diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-05-18 22:24:56 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-05-18 22:24:56 +0000 |
commit | 0eebcf7d241b97d6a763d98b8cd5ee2dd7fe9ab6 (patch) | |
tree | 7991b5d4f89c176f4a5dba6e39883fe012b931e8 /include/stdlib.h | |
parent | 2e943e3e1fd3e074c743818e07c658d1a41a0020 (diff) |
add posix_madvise, posix_memalign, strndup, and strnlen. mostly from
brad and millert, with hints from guenther, jmc, and otto I think.
ok previous.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 840d381aa1f..affc6b18010 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.46 2009/06/03 15:52:16 millert Exp $ */ +/* $OpenBSD: stdlib.h,v 1.47 2010/05/18 22:24:55 tedu Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -125,6 +125,7 @@ char *getenv(const char *); long labs(long); ldiv_t ldiv(long, long); void *malloc(size_t); +int posix_memalign(void **, size_t, size_t); void qsort(void *, size_t, size_t, int (*)(const void *, const void *)); int rand(void); void *realloc(void *, size_t); |