diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-04-22 14:39:07 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-04-22 14:39:07 -0400 |
commit | 431a4cd4df25dd9cc9fd699c59036f896aef1003 (patch) | |
tree | 8da80e0280c9ee6ebc54a41ffd90e54526c9c82b /include/unistd.h | |
parent | 58f430c1e0255c0b28aed1e9bf3d892c18c06631 (diff) | |
download | musl-431a4cd4df25dd9cc9fd699c59036f896aef1003.tar.gz musl-431a4cd4df25dd9cc9fd699c59036f896aef1003.tar.xz musl-431a4cd4df25dd9cc9fd699c59036f896aef1003.zip |
getdtablesize is not standard; move it to its correct spot in unistd.h
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index 307f665c..17f024fd 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -141,7 +141,6 @@ void swab(const void *, void *, ssize_t); long gethostid(void); int nice(int); void sync(void); -int getdtablesize(void); #endif #ifdef _GNU_SOURCE @@ -163,6 +162,7 @@ int getresgid(gid_t *, gid_t *, gid_t *); char *get_current_dir_name(void); int daemon(int, int); int getdomainname(char *, size_t); +int getdtablesize(void); #endif #define _XOPEN_VERSION 700 |