X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Fstdlib.h;h=2bfb00d270309ae3db3a211b0fb6c23a42f63553;hb=e31f60edab8600254145b8c5dbfcca423c75260b;hp=f692dddb80d33a3707520772cbfd8700702d3b1f;hpb=7a70e3527bc012c065959382187c2361624e1911;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc.so_src/include_exp/stdlib.h b/Usermode/Libraries/libc.so_src/include_exp/stdlib.h index f692dddb..2bfb00d2 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/stdlib.h +++ b/Usermode/Libraries/libc.so_src/include_exp/stdlib.h @@ -37,6 +37,12 @@ # define bsearch acess_bsearch # define qsort acess_qsort +# define free acess_free +# define malloc acess_malloc +# define calloc acess_calloc +# define realloc acess_realloc +# define IsHeap acess_IsHeap + # define srand acess_srand # define rand acess_rand # define rand_p acess_rand_p @@ -70,6 +76,7 @@ extern long long int llabs(long long int j); /* --- Environment --- */ extern char *getenv(const char *name); +extern int putenv(char *string); /* --- Search/Sort --- */ typedef int (*_stdlib_compar_t)(const void *, const void *);