|
| #define | VSF_LINUX_LIBC_HAS_ITOA 1 |
| |
| #define | aligned_alloc VSF_LINUX_LIBC_WRAPPER(aligned_alloc) |
| |
| #define | free VSF_LINUX_LIBC_WRAPPER(free) |
| |
| #define | posix_memalign VSF_LINUX_LIBC_WRAPPER(posix_memalign) |
| |
| #define | malloc_usable_size VSF_LINUX_LIBC_WRAPPER(malloc_usable_size) |
| |
| #define | exit VSF_LINUX_LIBC_WRAPPER(exit) |
| |
| #define | atexit VSF_LINUX_LIBC_WRAPPER(atexit) |
| |
| #define | _Exit VSF_LINUX_LIBC_WRAPPER(_Exit) |
| |
| #define | system VSF_LINUX_LIBC_WRAPPER(system) |
| |
| #define | realpath VSF_LINUX_LIBC_WRAPPER(realpath) |
| |
| #define | mktemps VSF_LINUX_LIBC_WRAPPER(mktemps) |
| |
| #define | mktemp VSF_LINUX_LIBC_WRAPPER(mktemp) |
| |
| #define | mkstemp VSF_LINUX_LIBC_WRAPPER(mkstemp) |
| |
| #define | mkostemp VSF_LINUX_LIBC_WRAPPER(mkostemp) |
| |
| #define | mkstemps VSF_LINUX_LIBC_WRAPPER(mkstemps) |
| |
| #define | mkostemps VSF_LINUX_LIBC_WRAPPER(mkostemps) |
| |
| #define | mkdtemp VSF_LINUX_LIBC_WRAPPER(mkdtemp) |
| |
| #define | __NR_exit exit |
| |
| #define | RAND_MAX 0x7FFF |
| |
| #define | EXIT_SUCCESS 0 |
| |
| #define | EXIT_FAILURE -1 |
| |
| #define | malloc(__size) ____malloc_ex(NULL, (__size), __FILE__, __FUNCTION__, __LINE__) |
| |
| #define | calloc(__n, __size) ____calloc_ex(NULL, (__n), (__size), __FILE__, __FUNCTION__, __LINE__) |
| |
| #define | realloc(__ptr, __size) ____realloc_ex(NULL, (__ptr), (__size), __FILE__, __FUNCTION__, __LINE__) |
| |
|
| void * | ____malloc_ex (vsf_linux_process_t *process, size_t size, const char *file, const char *func, int line) |
| |
| void * | ____calloc_ex (vsf_linux_process_t *process, size_t n, size_t size, const char *file, const char *func, int line) |
| |
| void * | ____realloc_ex (vsf_linux_process_t *process, void *p, size_t size, const char *file, const char *func, int line) |
| |
| void | free (void *p) |
| |
| void * | aligned_alloc (size_t alignment, size_t size) |
| |
| int | posix_memalign (void **memptr, size_t alignment, size_t size) |
| |
| size_t | malloc_usable_size (void *p) |
| |
| char * | mktemps (char *template_str, int suffixlen) |
| |
| char * | mktemp (char *template_str) |
| |
| int | mkstemp (char *template_str) |
| |
| int | mkostemp (char *template_str, int flags) |
| |
| int | mkstemps (char *template_str, int suffixlen) |
| |
| int | mkostemps (char *template_str, int suffixlen, int flags) |
| |
| char * | mkdtemp (char *template_str) |
| |
| div_t | div (int numer, int denom) |
| |
| ldiv_t | ldiv (long int numer, long int denom) |
| |
| lldiv_t | lldiv (long long int numer, long long int denom) |
| |
| int | atoi (const char *str) |
| |
| long int | atol (const char *str) |
| |
| long long int | atoll (const char *str) |
| |
| double | atof (const char *str) |
| |
| long | strtol (const char *str, char **endptr, int base) |
| |
| unsigned long | strtoul (const char *str, char **endptr, int base) |
| |
| long long | strtoll (const char *str, char **endptr, int base) |
| |
| unsigned long long | strtoull (const char *str, char **endptr, int base) |
| |
| float | strtof (const char *str, char **endptr) |
| |
| double | strtod (const char *str, char **endptr) |
| |
| void * | bsearch (const void *key, const void *base, size_t nitems, size_t size, int(*compar)(const void *, const void *)) |
| |
| int | rand (void) |
| |
| void | srand (unsigned int seed) |
| |
| void | srandom (unsigned int seed) |
| |
| long int | random (void) |
| |
| void | qsort (void *base, size_t nitems, size_t size, int(*compar)(const void *, const void *)) |
| |
| VSF_CAL_NO_RETURN void | abort (void) |
| |
| int | system (const char *command) |
| |
| VSF_CAL_NO_RETURN void | exit (int status) |
| |
| int | atexit (void(*func)(void)) |
| |
| VSF_CAL_NO_RETURN void | _Exit (int exit_code) |
| |
| int | abs (int j) |
| |
| long | labs (long j) |
| |
| long long | llabs (long long j) |
| |
| intmax_t | imaxabs (intmax_t j) |
| |
| int | getloadavg (double loadavg[], int nelem) |
| |
| char * | realpath (const char *path, char *resolved_path) |
| |
| int | at_quick_exit (void(*func)(void)) |
| |
| void | quick_exit (int status) |
| |
| int | mblen (const char *str, size_t n) |
| |
| size_t | mbstowcs (wchar_t *dst, const char *src, size_t len) |
| |
| int | mbtowc (wchar_t *pwc, const char *str, size_t n) |
| |
| size_t | wcstombs (char *str, const wchar_t *pwcs, size_t n) |
| |
| int | wctomb (char *str, wchar_t wchar) |
| |