diff options
| author | David Schultz <das@FreeBSD.org> | 2009-01-31 18:27:02 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2009-01-31 18:27:02 +0000 |
| commit | 544048ecef8fd8480d850fe80ba04ab9d7f8bdef (patch) | |
| tree | 86563ca98ba62d850839a916a23d185416bda1b7 /include/stdlib.h | |
| parent | 13fd4d21637e98c03983ed6c5972695dfa232fe9 (diff) | |
Notes
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 0a8327066bd7..91be536668b7 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -88,14 +88,14 @@ int atoi(const char *); long atol(const char *); void *bsearch(const void *, const void *, size_t, size_t, int (*)(const void *, const void *)); -void *calloc(size_t, size_t); +void *calloc(size_t, size_t) __malloc_like; div_t div(int, int) __pure2; void exit(int) __dead2; void free(void *); char *getenv(const char *); long labs(long) __pure2; ldiv_t ldiv(long, long) __pure2; -void *malloc(size_t); +void *malloc(size_t) __malloc_like; int mblen(const char *, size_t); size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t); int mbtowc(wchar_t * __restrict, const char * __restrict, size_t); |
