Minor additon
This commit is contained in:
parent
a37a3c3928
commit
37a4379512
1 changed files with 7 additions and 1 deletions
|
@ -12,6 +12,12 @@
|
|||
#ifndef _STDLIB_H
|
||||
#define _STDLIB_H
|
||||
|
||||
#ifdef _XOPEN_SOURCE
|
||||
#ifndef _POSIX_C_SOURCE
|
||||
#define _POSIX_C_SOURCE 200809L
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
#ifndef NULL
|
||||
|
@ -85,7 +91,7 @@ long labs(long);
|
|||
long long llabs(long long);
|
||||
|
||||
void * bsearch(const void *, const void *, size_t, size_t,
|
||||
int (*)(const void *, const void *));
|
||||
int (*)(const void *, const void *));
|
||||
void qsort(void *, size_t, size_t, int(*)(const void *, const void *));
|
||||
|
||||
int mblen(const char *, size_t);
|
||||
|
|
Loading…
Reference in a new issue