diff options
author | jasone <jasone@FreeBSD.org> | 2006-01-12 07:58:59 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2006-01-12 07:58:59 +0000 |
commit | 64c84dc7acb1d150693d9b3d40a829e0c9683c49 (patch) | |
tree | 81823ae5d05044f0c0974e82fe35f9f27a93b8ce /include | |
parent | ec693c19f9eea76a69262b3e50addf393b1595f9 (diff) | |
download | FreeBSD-src-64c84dc7acb1d150693d9b3d40a829e0c9683c49.zip FreeBSD-src-64c84dc7acb1d150693d9b3d40a829e0c9683c49.tar.gz |
Expose the posix_memalign() prototype, now that the function is implemented
by libc.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 1fa4328..8953409 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -158,7 +158,7 @@ void _Exit(int) __dead2; * research can be done. */ #if __POSIX_VISIBLE /* >= ??? */ -/* int posix_memalign(void **, size_t, size_t); (ADV) */ +int posix_memalign(void **, size_t, size_t); /* (ADV) */ int rand_r(unsigned *); /* (TSF) */ int setenv(const char *, const char *, int); void unsetenv(const char *); |