mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fixed broken declaration of mktemp(3) in <stdlib.h>.
This commit is contained in:
parent
85549b5688
commit
25b33b4755
1 changed files with 3 additions and 3 deletions
|
@ -55,6 +55,9 @@ void _Exit(int status);
|
|||
void free(void*);
|
||||
char* getenv(const char*);
|
||||
void* malloc(size_t);
|
||||
#if !defined(_SORTIX_SOURCE)
|
||||
char* mktemp(char* templ);
|
||||
#endif
|
||||
void qsort(void*, size_t, size_t, int (*)(const void*, const void*));
|
||||
int rand(void);
|
||||
void* realloc(void*, size_t);
|
||||
|
@ -89,9 +92,6 @@ size_t mbstowcs(wchar_t *restrict, const char* restrict, size_t);
|
|||
int mbtowc(wchar_t *restrict, const char* restrict, size_t);
|
||||
char* mkdtemp(char*);
|
||||
int mkstemp(char*);
|
||||
#if !defined(_SORTIX_SOURCE)
|
||||
char* mktemp(char* templ);
|
||||
#endif
|
||||
long mrand48(void);
|
||||
long nrand48(unsigned short[3]);
|
||||
int posix_memalign(void**, size_t, size_t);
|
||||
|
|
Loading…
Reference in a new issue