fix pototypes in posix2008 data
[musl-tables] / data / posix2008.ok
1 FD_CLR  sys_select.h            pselect, select - synchronous I/O multiplexing  void FD_CLR(int fd, fd_set *fdset);
2 FD_ISSET        sys_select.h            pselect, select - synchronous I/O multiplexing  int FD_ISSET(int fd, fd_set *fdset);
3 FD_SET  sys_select.h            pselect, select - synchronous I/O multiplexing  void FD_SET(int fd, fd_set *fdset);
4 FD_ZERO sys_select.h            pselect, select - synchronous I/O multiplexing  void FD_ZERO(fd_set *fdset);
5 _Exit   stdlib.h unistd.h               _Exit, _exit - terminate a process      void _Exit(int status);
6 _exit   stdlib.h unistd.h               _Exit, _exit - terminate a process      void _exit(int status);
7 _longjmp        setjmp.h        OB XSI  _longjmp, _setjmp - non-local goto      void _longjmp(jmp_buf env, int val);
8 _setjmp setjmp.h        OB XSI  _longjmp, _setjmp - non-local goto      int _setjmp(jmp_buf env);
9 _tolower        ctype.h OB XSI  _tolower - transliterate uppercase characters to lowercase      int _tolower(int c);
10 _toupper        ctype.h OB XSI  _toupper - transliterate lowercase characters to uppercase      int _toupper(int c);
11 a64l    stdlib.h        XSI     a64l, l64a - convert between a 32-bit integer and a radix-64 ASCII string       long a64l(const char *s);
12 abort   stdlib.h                abort - generate an abnormal process abort      void abort(void);
13 abs     stdlib.h                abs - return an integer absolute value  int abs(int i);
14 accept  sys_socket.h            accept - accept a new connection on a socket    int accept(int socket, struct sockaddr *restrict address, socklen_t *restrict address_len);
15 access  unistd.h                access, faccessat - determine accessibility of a file relative to directory file descriptor     int access(const char *path, int amode);
16 acos    math.h          acos, acosf, acosl - arc cosine functions       double acos(double x);
17 acosf   math.h          acos, acosf, acosl - arc cosine functions       float acosf(float x);
18 acosh   math.h          acosh, acoshf, acoshl - inverse hyperbolic cosine functions     double acosh(double x);
19 acoshf  math.h          acosh, acoshf, acoshl - inverse hyperbolic cosine functions     float acoshf(float x);
20 acoshl  math.h          acosh, acoshf, acoshl - inverse hyperbolic cosine functions     long double acoshl(long double x);
21 acosl   math.h          acos, acosf, acosl - arc cosine functions       long double acosl(long double x);
22 aio_cancel      aio.h           aio_cancel - cancel an asynchronous I/O request int aio_cancel(int fildes, struct aiocb *aiocbp);
23 aio_error       aio.h           aio_error - retrieve errors status for an asynchronous I/O operation    int aio_error(const struct aiocb *aiocbp);
24 aio_fsync       aio.h           aio_fsync - asynchronous file synchronization   int aio_fsync(int op, struct aiocb *aiocbp);
25 aio_read        aio.h           aio_read - asynchronous read from a file        int aio_read(struct aiocb *aiocbp);
26 aio_return      aio.h           aio_return - retrieve return status of an asynchronous I/O operation    ssize_t aio_return(struct aiocb *aiocbp);
27 aio_suspend     aio.h           aio_suspend - wait for an asynchronous I/O request      int aio_suspend(const struct aiocb *const list[], int nent, const struct timespec *timeout);
28 aio_write       aio.h           aio_write - asynchronous write to a file        int aio_write(struct aiocb *aiocbp);
29 alarm   unistd.h                alarm - schedule an alarm signal        unsigned alarm(unsigned seconds);
30 alphasort       dirent.h                alphasort, scandir - scan a directory   int alphasort(const struct dirent **d1, const struct dirent **d2);
31 asctime time.h  OB      asctime, asctime_r - convert date and time to a string  char *asctime(const struct tm *timeptr);
32 asctime_r       time.h  OB CX   asctime, asctime_r - convert date and time to a string  char *asctime_r(const struct tm *restrict tm, char *restrict buf);
33 asin    math.h          asin, asinf, asinl - arc sine function  double asin(double x);
34 asinf   math.h          asin, asinf, asinl - arc sine function  float asinf(float x);
35 asinh   math.h          asinh, asinhf, asinhl - inverse hyperbolic sine functions       double asinh(double x);
36 asinhf  math.h          asinh, asinhf, asinhl - inverse hyperbolic sine functions       float asinhf(float x);
37 asinhl  math.h          asinh, asinhf, asinhl - inverse hyperbolic sine functions       long double asinhl(long double x);
38 asinl   math.h          asin, asinf, asinl - arc sine function  long double asinl(long double x);
39 assert  assert.h                assert - insert program diagnostics     void assert(scalar expression);
40 atan    math.h          atan, atanf, atanl - arc tangent function       double atan(double x);
41 atan2   math.h          atan2, atan2f, atan2l - arc tangent functions   double atan2(double y, double x);
42 atan2f  math.h          atan2, atan2f, atan2l - arc tangent functions   float atan2f(float y, float x);
43 atan2l  math.h          atan2, atan2f, atan2l - arc tangent functions   long double atan2l(long double y, long double x);
44 atanf   math.h          atan, atanf, atanl - arc tangent function       float atanf(float x);
45 atanh   math.h          atanh, atanhf, atanhl - inverse hyperbolic tangent functions    double atanh(double x);
46 atanhf  math.h          atanh, atanhf, atanhl - inverse hyperbolic tangent functions    float atanhf(float x);
47 atanhl  math.h          atanh, atanhf, atanhl - inverse hyperbolic tangent functions    long double atanhl(long double x);
48 atanl   math.h          atan, atanf, atanl - arc tangent function       long double atanl(long double x);
49 atexit  stdlib.h                atexit - register a function to run at process termination      int atexit(void (*func)(void));
50 atof    stdlib.h                atof - convert a string to a double-precision number    double atof(const char *str);
51 atoi    stdlib.h                atoi - convert a string to an integer   int atoi(const char *str);
52 atol    stdlib.h                atol, atoll - convert a string to a long integer        long atol(const char *str);
53 atoll   stdlib.h                atol, atoll - convert a string to a long integer        long long atoll(const char *nptr);
54 basename        libgen.h        XSI     basename - return the last component of a pathname      char *basename(char *path);
55 bind    sys_socket.h            bind - bind a name to a socket  int bind(int socket, const struct sockaddr *address, socklen_t address_len);
56 bsearch stdlib.h                bsearch - binary search a sorted table  void *bsearch(const void *key, const void *base, size_t nel, size_t width, int (*compar)(const void *, const void *));
57 btowc   stdio.h wchar.h         btowc - single byte to wide character conversion        wint_t btowc(int c);
58 cabs    complex.h               cabs, cabsf, cabsl - return a complex absolute value    double cabs(double complex z);
59 cabsf   complex.h               cabs, cabsf, cabsl - return a complex absolute value    float cabsf(float complex z);
60 cabsl   complex.h               cabs, cabsf, cabsl - return a complex absolute value    long double cabsl(long double complex z);
61 cacos   complex.h               cacos, cacosf, cacosl - complex arc cosine functions    double complex cacos(double complex z);
62 cacosf  complex.h               cacos, cacosf, cacosl - complex arc cosine functions    float complex cacosf(float complex z);
63 cacosh  complex.h               cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions      double complex cacosh(double complex z);
64 cacoshf complex.h               cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions      float complex cacoshf(float complex z);
65 cacoshl complex.h               cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions      long double complex cacoshl(long double complex z);
66 cacosl  complex.h               cacos, cacosf, cacosl - complex arc cosine functions    long double complex cacosl(long double complex z);
67 calloc  stdlib.h                calloc - a memory allocator     void *calloc(size_t nelem, size_t elsize);
68 carg    complex.h               carg, cargf, cargl - complex argument functions double carg(double complex z);
69 cargf   complex.h               carg, cargf, cargl - complex argument functions float cargf(float complex z);
70 cargl   complex.h               carg, cargf, cargl - complex argument functions long double cargl(long double complex z);
71 casin   complex.h               casin, casinf, casinl - complex arc sine functions      double complex casin(double complex z);
72 casinf  complex.h               casin, casinf, casinl - complex arc sine functions      float complex casinf(float complex z);
73 casinh  complex.h               casinh, casinhf, casinhl - complex arc hyperbolic sine functions        double complex casinh(double complex z);
74 casinhf complex.h               casinh, casinhf, casinhl - complex arc hyperbolic sine functions        float complex casinhf(float complex z);
75 casinhl complex.h               casinh, casinhf, casinhl - complex arc hyperbolic sine functions        long double complex casinhl(long double complex z);
76 casinl  complex.h               casin, casinf, casinl - complex arc sine functions      long double complex casinl(long double complex z);
77 catan   complex.h               catan, catanf, catanl - complex arc tangent functions   double complex catan(double complex z);
78 catanf  complex.h               catan, catanf, catanl - complex arc tangent functions   float complex catanf(float complex z);
79 catanh  complex.h               catanh, catanhf, catanhl - complex arc hyperbolic tangent functions     double complex catanh(double complex z);
80 catanhf complex.h               catanh, catanhf, catanhl - complex arc hyperbolic tangent functions     float complex catanhf(float complex z);
81 catanhl complex.h               catanh, catanhf, catanhl - complex arc hyperbolic tangent functions     long double complex catanhl(long double complex z);
82 catanl  complex.h               catan, catanf, catanl - complex arc tangent functions   long double complex catanl(long double complex z);
83 catclose        nl_types.h              catclose - close a message catalog descriptor   int catclose(nl_catd catd);
84 catgets nl_types.h              catgets - read a program message        char *catgets(nl_catd catd, int set_id, int msg_id, const char *s);
85 catopen nl_types.h              catopen - open a message catalog        nl_catd catopen(const char *name, int oflag);
86 cbrt    math.h          cbrt, cbrtf, cbrtl - cube root functions        double cbrt(double x);
87 cbrtf   math.h          cbrt, cbrtf, cbrtl - cube root functions        float cbrtf(float x);
88 cbrtl   math.h          cbrt, cbrtf, cbrtl - cube root functions        long double cbrtl(long double x);
89 ccos    complex.h               ccos, ccosf, ccosl - complex cosine functions   double complex ccos(double complex z);
90 ccosf   complex.h               ccos, ccosf, ccosl - complex cosine functions   float complex ccosf(float complex z);
91 ccosh   complex.h               ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions     double complex ccosh(double complex z);
92 ccoshf  complex.h               ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions     float complex ccoshf(float complex z);
93 ccoshl  complex.h               ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions     long double complex ccoshl(long double complex z);
94 ccosl   complex.h               ccos, ccosf, ccosl - complex cosine functions   long double complex ccosl(long double complex z);
95 ceil    math.h          ceil, ceilf, ceill - ceiling value function     double ceil(double x);
96 ceilf   math.h          ceil, ceilf, ceill - ceiling value function     float ceilf(float x);
97 ceill   math.h          ceil, ceilf, ceill - ceiling value function     long double ceill(long double x);
98 cexp    complex.h               cexp, cexpf, cexpl - complex exponential functions      double complex cexp(double complex z);
99 cexpf   complex.h               cexp, cexpf, cexpl - complex exponential functions      float complex cexpf(float complex z);
100 cexpl   complex.h               cexp, cexpf, cexpl - complex exponential functions      long double complex cexpl(long double complex z);
101 cfgetispeed     termios.h               cfgetispeed - get input baud rate       speed_t cfgetispeed(const struct termios *termios_p);
102 cfgetospeed     termios.h               cfgetospeed - get output baud rate      speed_t cfgetospeed(const struct termios *termios_p);
103 cfsetispeed     termios.h               cfsetispeed - set input baud rate       int cfsetispeed(struct termios *termios_p, speed_t speed);
104 cfsetospeed     termios.h               cfsetospeed - set output baud rate      int cfsetospeed(struct termios *termios_p, speed_t speed);
105 chdir   unistd.h                chdir - change working directory        int chdir(const char *path);
106 chmod   sys_stat.h              chmod, fchmodat - change mode of a file relative to directory file descriptor   int chmod(const char *path, mode_t mode);
107 chown   unistd.h                chown, fchownat - change owner and group of a file relative to directory file descriptor        int chown(const char *path, uid_t owner, gid_t group);
108 cimag   complex.h               cimag, cimagf, cimagl - complex imaginary functions     double cimag(double complex z);
109 cimagf  complex.h               cimag, cimagf, cimagl - complex imaginary functions     float cimagf(float complex z);
110 cimagl  complex.h               cimag, cimagf, cimagl - complex imaginary functions     long double cimagl(long double complex z);
111 clearerr        stdio.h         clearerr - clear indicators on a stream void clearerr(FILE *stream);
112 clock   time.h          clock - report CPU time used    clock_t clock(void);
113 clock_getcpuclockid     time.h  CPT     clock_getcpuclockid - access a process CPU-time clock (<b>ADVANCED REALTIME</b>)        int clock_getcpuclockid(pid_t pid, clockid_t *clock_id);
114 clock_getres    time.h  CX      clock_getres, clock_gettime, clock_settime - clock and timer functions  int clock_getres(clockid_t clock_id, struct timespec *res);
115 clock_gettime   time.h  CX      clock_getres, clock_gettime, clock_settime - clock and timer functions  int clock_gettime(clockid_t clock_id, struct timespec *tp);
116 clock_nanosleep time.h  CX      clock_nanosleep - high resolution sleep with specifiable clock  int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp, struct timespec *rmtp);
117 clock_settime   time.h  CX      clock_getres, clock_gettime, clock_settime - clock and timer functions  int clock_settime(clockid_t clock_id, const struct timespec *tp);
118 clog    complex.h               clog, clogf, clogl - complex natural logarithm functions        double complex clog(double complex z);
119 clogf   complex.h               clog, clogf, clogl - complex natural logarithm functions        float complex clogf(float complex z);
120 clogl   complex.h               clog, clogf, clogl - complex natural logarithm functions        long double complex clogl(long double complex z);
121 close   unistd.h                close - close a file descriptor int close(int fildes);
122 closedir        dirent.h                closedir - close a directory stream     int closedir(DIR *dirp);
123 closelog        syslog.h        XSI     closelog, openlog, setlogmask, syslog - control system log      void closelog(void);
124 confstr unistd.h                confstr - get configurable variables    size_t confstr(int name, char *buf, size_t len);
125 conj    complex.h               conj, conjf, conjl - complex conjugate functions        double complex conj(double complex z);
126 conjf   complex.h               conj, conjf, conjl - complex conjugate functions        float complex conjf(float complex z);
127 conjl   complex.h               conj, conjf, conjl - complex conjugate functions        long double complex conjl(long double complex z);
128 connect sys_socket.h            connect - connect a socket      int connect(int socket, const struct sockaddr *address, socklen_t address_len);
129 copysign        math.h          copysign, copysignf, copysignl - number manipulation function   double copysign(double x, double y);
130 copysignf       math.h          copysign, copysignf, copysignl - number manipulation function   float copysignf(float x, float y);
131 copysignl       math.h          copysign, copysignf, copysignl - number manipulation function   long double copysignl(long double x, long double y);
132 cos     math.h          cos, cosf, cosl - cosine function       double cos(double x);
133 cosf    math.h          cos, cosf, cosl - cosine function       float cosf(float x);
134 cosh    math.h          cosh, coshf, coshl - hyperbolic cosine functions        double cosh(double x);
135 coshf   math.h          cosh, coshf, coshl - hyperbolic cosine functions        float coshf(float x);
136 coshl   math.h          cosh, coshf, coshl - hyperbolic cosine functions        long double coshl(long double x);
137 cosl    math.h          cos, cosf, cosl - cosine function       long double cosl(long double x);
138 cpow    complex.h               cpow, cpowf, cpowl - complex power functions    double complex cpow(double complex x, double complex y);
139 cpowf   complex.h               cpow, cpowf, cpowl - complex power functions    float complex cpowf(float complex x, float complex y);
140 cpowl   complex.h               cpow, cpowf, cpowl - complex power functions    long double complex cpowl(long double complex x, long double complex y);
141 cproj   complex.h               cproj, cprojf, cprojl - complex projection functions    double complex cproj(double complex z);
142 cprojf  complex.h               cproj, cprojf, cprojl - complex projection functions    float complex cprojf(float complex z);
143 cprojl  complex.h               cproj, cprojf, cprojl - complex projection functions    long double complex cprojl(long double complex z);
144 creal   complex.h               creal, crealf, creall - complex real functions  double creal(double complex z);
145 crealf  complex.h               creal, crealf, creall - complex real functions  float crealf(float complex z);
146 creall  complex.h               creal, crealf, creall - complex real functions  long double creall(long double complex z);
147 creat   sys/stat.h fcntl.h      OH      creat - create a new file or rewrite an existing one    int creat(const char *path, mode_t mode);
148 crypt   unistd.h        XSI     crypt - string encoding function (<b>CRYPT</b>) char *crypt(const char *key, const char *salt);
149 csin    complex.h               csin, csinf, csinl - complex sine functions     double complex csin(double complex z);
150 csinf   complex.h               csin, csinf, csinl - complex sine functions     float complex csinf(float complex z);
151 csinh   complex.h               csinh, csinhf, csinhl - complex hyperbolic sine functions       double complex csinh(double complex z);
152 csinhf  complex.h               csinh, csinhf, csinhl - complex hyperbolic sine functions       float complex csinhf(float complex z);
153 csinhl  complex.h               csinh, csinhf, csinhl - complex hyperbolic sine functions       long double complex csinhl(long double complex z);
154 csinl   complex.h               csin, csinf, csinl - complex sine functions     long double complex csinl(long double complex z);
155 csqrt   complex.h               csqrt, csqrtf, csqrtl - complex square root functions   double complex csqrt(double complex z);
156 csqrtf  complex.h               csqrt, csqrtf, csqrtl - complex square root functions   float complex csqrtf(float complex z);
157 csqrtl  complex.h               csqrt, csqrtf, csqrtl - complex square root functions   long double complex csqrtl(long double complex z);
158 ctan    complex.h               ctan, ctanf, ctanl - complex tangent functions  double complex ctan(double complex z);
159 ctanf   complex.h               ctan, ctanf, ctanl - complex tangent functions  float complex ctanf(float complex z);
160 ctanh   complex.h               ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions    double complex ctanh(double complex z);
161 ctanhf  complex.h               ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions    float complex ctanhf(float complex z);
162 ctanhl  complex.h               ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions    long double complex ctanhl(long double complex z);
163 ctanl   complex.h               ctan, ctanf, ctanl - complex tangent functions  long double complex ctanl(long double complex z);
164 ctermid stdio.h CX      ctermid - generate a pathname for the controlling terminal      char *ctermid(char *s);
165 ctime   time.h  OB      ctime, ctime_r - convert a time value to a date and time string char *ctime(const time_t *clock);
166 ctime_r time.h  OB CX   ctime, ctime_r - convert a time value to a date and time string char *ctime_r(const time_t *clock, char *buf);
167 daylight        time.h  XSI     daylight, timezone, tzname, tzset - set timezone conversion information 
168 dbm_clearerr    ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  int dbm_clearerr(DBM *db);
169 dbm_close       ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  void dbm_close(DBM *db);
170 dbm_delete      ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  int dbm_delete(DBM *db, datum key);
171 dbm_error       ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  int dbm_error(DBM *db);
172 dbm_fetch       ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  datum dbm_fetch(DBM *db, datum key);
173 dbm_firstkey    ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  datum dbm_firstkey(DBM *db);
174 dbm_nextkey     ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  datum dbm_nextkey(DBM *db);
175 dbm_open        ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  DBM *dbm_open(const char *file, int open_flags, mode_t file_mode);
176 dbm_store       ndbm.h  XSI     dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions  int dbm_store(DBM *db, datum key, datum content, int store_mode);
177 difftime        time.h          difftime - compute the difference between two calendar time values      double difftime(time_t time1, time_t time0);
178 dirfd   dirent.h                dirfd - extract the file descriptor used by a DIR stream        int dirfd(DIR *dirp);
179 dirname libgen.h        XSI     dirname - report the parent directory name of a file pathname   char *dirname(char *path);
180 div     stdlib.h                div - compute the quotient and remainder of an integer division div_t div(int numer, int denom);
181 dlclose dlfcn.h         dlclose - close a dlopen object int dlclose(void *handle);
182 dlerror dlfcn.h         dlerror - get diagnostic information    char *dlerror(void);
183 dlopen  dlfcn.h         dlopen - gain access to an executable object file       void *dlopen(const char *file, int mode);
184 dlsym   dlfcn.h         dlsym - obtain the address of a symbol from a dlopen object     void *dlsym(void *restrict handle, const char *restrict name);
185 dprintf stdio.h CX      dprintf, fprintf, printf, snprintf, sprintf - print formatted output    int dprintf(int fildes, const char *restrict format, ...);
186 drand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   double drand48(void);
187 dup     unistd.h                dup, dup2 - duplicate an open file descriptor   int dup(int fildes);
188 dup2    unistd.h                dup, dup2 - duplicate an open file descriptor   int dup2(int fildes, int fildes2);
189 duplocale       locale.h        CX      duplocale - duplicate a locale object   locale_t duplocale(locale_t locobj);
190 encrypt unistd.h        XSI     encrypt - encoding function (<b>CRYPT</b>)      void encrypt(char block[64], int edflag);
191 endgrent        grp.h   XSI     endgrent, getgrent, setgrent - group database entry functions   void endgrent(void);
192 endhostent      netdb.h         endhostent, gethostent, sethostent - network host database functions    void endhostent(void);
193 endnetent       netdb.h         endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions        void endnetent(void);
194 endprotoent     netdb.h         endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions   void endprotoent(void);
195 endpwent        pwd.h   XSI     endpwent, getpwent, setpwent - user database functions  void endpwent(void);
196 endservent      netdb.h         endservent, getservbyname, getservbyport, getservent, setservent - network services database functions  void endservent(void);
197 endutxent       utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  void endutxent(void);
198 environ unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file 
199 erand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   double erand48(unsigned short xsubi[3]);
200 erf     math.h          erf, erff, erfl - error functions       double erf(double x);
201 erfc    math.h          erfc, erfcf, erfcl - complementary error functions      double erfc(double x);
202 erfcf   math.h          erfc, erfcf, erfcl - complementary error functions      float erfcf(float x);
203 erfcl   math.h          erfc, erfcf, erfcl - complementary error functions      long double erfcl(long double x);
204 erff    math.h          erf, erff, erfl - error functions       float erff(float x);
205 erfl    math.h          erf, erff, erfl - error functions       long double erfl(long double x);
206 errno   errno.h         errno - error return value      
207 execl   unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execl(const char *path, const char *arg0, ... /*, (char *)0 */);
208 execle  unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execle(const char *path, const char *arg0, ... /*, (char *)0, char *const envp[]*/);
209 execlp  unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execlp(const char *file, const char *arg0, ... /*, (char *)0 */);
210 execv   unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execv(const char *path, char *const argv[]);
211 execve  unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execve(const char *path, char *const argv[], char *const envp[]);
212 execvp  unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int execvp(const char *file, char *const argv[]);
213 exit    stdlib.h                exit - terminate a process      void exit(int status);
214 exp     math.h          exp, expf, expl - exponential function  double exp(double x);
215 exp2    math.h          exp2, exp2f, exp2l - exponential base 2 functions       double exp2(double x);
216 exp2f   math.h          exp2, exp2f, exp2l - exponential base 2 functions       float exp2f(float x);
217 exp2l   math.h          exp2, exp2f, exp2l - exponential base 2 functions       long double exp2l(long double x);
218 expf    math.h          exp, expf, expl - exponential function  float expf(float x);
219 expl    math.h          exp, expf, expl - exponential function  long double expl(long double x);
220 expm1   math.h          expm1, expm1f, expm1l - compute exponential functions   double expm1(double x);
221 expm1f  math.h          expm1, expm1f, expm1l - compute exponential functions   float expm1f(float x);
222 expm1l  math.h          expm1, expm1f, expm1l - compute exponential functions   long double expm1l(long double x);
223 fabs    math.h          fabs, fabsf, fabsl - absolute value function    double fabs(double x);
224 fabsf   math.h          fabs, fabsf, fabsl - absolute value function    float fabsf(float x);
225 fabsl   math.h          fabs, fabsf, fabsl - absolute value function    long double fabsl(long double x);
226 faccessat       unistd.h                access, faccessat - determine accessibility of a file relative to directory file descriptor     int faccessat(int fd, const char *path, int amode, int flag);
227 fchdir  unistd.h                fchdir - change working directory       int fchdir(int fildes);
228 fchmod  sys_stat.h              fchmod - change mode of a file  int fchmod(int fildes, mode_t mode);
229 fchmodat        sys_stat.h              chmod, fchmodat - change mode of a file relative to directory file descriptor   int fchmodat(int fd, const char *path, mode_t mode, int flag);
230 fchown  unistd.h                fchown - change owner and group of a file       int fchown(int fildes, uid_t owner, gid_t group);
231 fchownat        unistd.h                chown, fchownat - change owner and group of a file relative to directory file descriptor        int fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag);
232 fclose  stdio.h         fclose - close a stream int fclose(FILE *stream);
233 fcntl   fcntl.h         fcntl - file control    int fcntl(int fildes, int cmd, ...);
234 fdatasync       unistd.h        SIO     fdatasync - synchronize the data of a file (<b>REALTIME</b>)    int fdatasync(int fildes);
235 fdim    math.h          fdim, fdimf, fdiml - compute positive difference between two floating-point numbers     double fdim(double x, double y);
236 fdimf   math.h          fdim, fdimf, fdiml - compute positive difference between two floating-point numbers     float fdimf(float x, float y);
237 fdiml   math.h          fdim, fdimf, fdiml - compute positive difference between two floating-point numbers     long double fdiml(long double x, long double y);
238 fdopen  stdio.h CX      fdopen - associate a stream with a file descriptor      FILE *fdopen(int fildes, const char *mode);
239 fdopendir       dirent.h                fdopendir, opendir - open directory associated with file descriptor     DIR *fdopendir(int fd);
240 feclearexcept   fenv.h          feclearexcept - clear floating-point exception  int feclearexcept(int excepts);
241 fegetenv        fenv.h          fegetenv, fesetenv - get and set current floating-point environment     int fegetenv(fenv_t *envp);
242 fegetexceptflag fenv.h          fegetexceptflag, fesetexceptflag - get and set floating-point status flags      int fegetexceptflag(fexcept_t *flagp, int excepts);
243 fegetround      fenv.h          fegetround, fesetround - get and set current rounding direction int fegetround(void);
244 feholdexcept    fenv.h          feholdexcept - save current floating-point environment  int feholdexcept(fenv_t *envp);
245 feof    stdio.h         feof - test end-of-file indicator on a stream   int feof(FILE *stream);
246 feraiseexcept   fenv.h          feraiseexcept - raise floating-point exception  int feraiseexcept(int excepts);
247 ferror  stdio.h         ferror - test error indicator on a stream       int ferror(FILE *stream);
248 fesetenv        fenv.h          fegetenv, fesetenv - get and set current floating-point environment     int fesetenv(const fenv_t *envp);
249 fesetexceptflag fenv.h          fegetexceptflag, fesetexceptflag - get and set floating-point status flags      int fesetexceptflag(const fexcept_t *flagp, int excepts);
250 fesetround      fenv.h          fegetround, fesetround - get and set current rounding direction int fesetround(int round);
251 fetestexcept    fenv.h          fetestexcept - test floating-point exception flags      int fetestexcept(int excepts);
252 feupdateenv     fenv.h          feupdateenv - update floating-point environment int feupdateenv(const fenv_t *envp);
253 fexecve unistd.h                environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file int fexecve(int fd, char *const argv[], char *const envp[]);
254 fflush  stdio.h         fflush - flush a stream int fflush(FILE *stream);
255 ffs     strings.h       XSI     ffs - find first set bit        int ffs(int i);
256 fgetc   stdio.h         fgetc - get a byte from a stream        int fgetc(FILE *stream);
257 fgetpos stdio.h         fgetpos - get current file position information int fgetpos(FILE *restrict stream, fpos_t *restrict pos);
258 fgets   stdio.h         fgets - get a string from a stream      char *fgets(char *restrict s, int n, FILE *restrict stream);
259 fgetwc  stdio.h wchar.h         fgetwc - get a wide-character code from a stream        wint_t fgetwc(FILE *stream);
260 fgetws  stdio.h wchar.h         fgetws - get a wide-character string from a stream      wchar_t *fgetws(wchar_t *restrict ws, int n, FILE *restrict stream);
261 fileno  stdio.h CX      fileno - map a stream pointer to a file descriptor      int fileno(FILE *stream);
262 flockfile       stdio.h CX      flockfile, ftrylockfile, funlockfile - stdio locking functions  void flockfile(FILE *file);
263 floor   math.h          floor, floorf, floorl - floor function  double floor(double x);
264 floorf  math.h          floor, floorf, floorl - floor function  float floorf(float x);
265 floorl  math.h          floor, floorf, floorl - floor function  long double floorl(long double x);
266 fma     math.h          fma, fmaf, fmal - floating-point multiply-add   double fma(double x, double y, double z);
267 fmaf    math.h          fma, fmaf, fmal - floating-point multiply-add   float fmaf(float x, float y, float z);
268 fmal    math.h          fma, fmaf, fmal - floating-point multiply-add   long double fmal(long double x, long double y, long double z);
269 fmax    math.h          fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers      double fmax(double x, double y);
270 fmaxf   math.h          fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers      float fmaxf(float x, float y);
271 fmaxl   math.h          fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers      long double fmaxl(long double x, long double y);
272 fmemopen        stdio.h CX      fmemopen - open a memory buffer stream  FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode);
273 fmin    math.h          fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers      double fmin(double x, double y);
274 fminf   math.h          fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers      float fminf(float x, float y);
275 fminl   math.h          fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers      long double fminl(long double x, long double y);
276 fmod    math.h          fmod, fmodf, fmodl - floating-point remainder value function    double fmod(double x, double y);
277 fmodf   math.h          fmod, fmodf, fmodl - floating-point remainder value function    float fmodf(float x, float y);
278 fmodl   math.h          fmod, fmodf, fmodl - floating-point remainder value function    long double fmodl(long double x, long double y);
279 fmtmsg  fmtmsg.h        XSI     fmtmsg - display a message in the specified format on standard error and/or a system console    int fmtmsg(long classification, const char *label, int severity, const char *text, const char *action, const char *tag);
280 fnmatch fnmatch.h               fnmatch - match a filename or a pathname        int fnmatch(const char *pattern, const char *string, int flags);
281 fopen   stdio.h         fopen - open a stream   FILE *fopen(const char *restrict filename, const char *restrict mode);
282 fork    unistd.h                fork - create a new process     pid_t fork(void);
283 fpathconf       unistd.h                fpathconf, pathconf - get configurable pathname variables       long fpathconf(int fildes, int name);
284 fpclassify      math.h          fpclassify - classify real floating type        int fpclassify(real-floating x);
285 fprintf stdio.h         dprintf, fprintf, printf, snprintf, sprintf - print formatted output    int fprintf(FILE *restrict stream, const char *restrict format, ...);
286 fputc   stdio.h         fputc - put a byte on a stream  int fputc(int c, FILE *stream);
287 fputs   stdio.h         fputs - put a string on a stream        int fputs(const char *restrict s, FILE *restrict stream);
288 fputwc  stdio.h wchar.h         fputwc - put a wide-character code on a stream  wint_t fputwc(wchar_t wc, FILE *stream);
289 fputws  stdio.h wchar.h         fputws - put a wide-character string on a stream        int fputws(const wchar_t *restrict ws, FILE *restrict stream);
290 fread   stdio.h         fread - binary input    size_t fread(void *restrict ptr, size_t size, size_t nitems, FILE *restrict stream);
291 free    stdlib.h                free - free allocated memory    void free(void *ptr);
292 freeaddrinfo    sys_socket.h netdb.h            freeaddrinfo, getaddrinfo - get address information     void freeaddrinfo(struct addrinfo *ai);
293 freelocale      locale.h        CX      freelocale - free resources allocated for a locale object       void freelocale(locale_t locobj);
294 freopen stdio.h         freopen - open a stream FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *restrict stream);
295 frexp   math.h          frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number    double frexp(double num, int *exp);
296 frexpf  math.h          frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number    float frexpf(float num, int *exp);
297 frexpl  math.h          frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number    long double frexpl(long double num, int *exp);
298 fscanf  stdio.h         fscanf, scanf, sscanf - convert formatted input int fscanf(FILE *restrict stream, const char *restrict format, ...);
299 fseek   stdio.h         fseek, fseeko - reposition a file-position indicator in a stream        int fseek(FILE *stream, long offset, int whence);
300 fseeko  stdio.h CX      fseek, fseeko - reposition a file-position indicator in a stream        int fseeko(FILE *stream, off_t offset, int whence);
301 fsetpos stdio.h         fsetpos - set current file position     int fsetpos(FILE *stream, const fpos_t *pos);
302 fstat   sys_stat.h              fstat - get file status int fstat(int fildes, struct stat *buf);
303 fstatat sys_stat.h              fstatat, lstat, stat - get file status  int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag);
304 fstatvfs        sys_statvfs.h           fstatvfs, statvfs - get file system information int fstatvfs(int fildes, struct statvfs *buf);
305 fsync   unistd.h        FSC     fsync - synchronize changes to a file   int fsync(int fildes);
306 ftell   stdio.h         ftell, ftello - return a file offset in a stream        long ftell(FILE *stream);
307 ftello  stdio.h CX      ftell, ftello - return a file offset in a stream        off_t ftello(FILE *stream);
308 ftok    sys_ipc.h       XSI     ftok - generate an IPC key      key_t ftok(const char *path, int id);
309 ftruncate       unistd.h                ftruncate - truncate a file to a specified length       int ftruncate(int fildes, off_t length);
310 ftrylockfile    stdio.h CX      flockfile, ftrylockfile, funlockfile - stdio locking functions  int ftrylockfile(FILE *file);
311 ftw     ftw.h   OB XSI  ftw - traverse (walk) a file tree       int ftw(const char *path, int (*fn)(const char *, const struct stat *ptr, int flag), int ndirs);
312 funlockfile     stdio.h CX      flockfile, ftrylockfile, funlockfile - stdio locking functions  void funlockfile(FILE *file);
313 futimens        sys_stat.h sys_time.h           futimens, utimensat, utimes - set file access and modification times    int futimens(int fd, const struct timespec times[2]);
314 fwide   stdio.h wchar.h         fwide - set stream orientation  int fwide(FILE *stream, int mode);
315 fwprintf        stdio.h wchar.h         fwprintf, swprintf, wprintf - print formatted wide-character output     int fwprintf(FILE *restrict stream, const wchar_t *restrict format, ...);
316 fwrite  stdio.h         fwrite - binary output  size_t fwrite(const void *restrict ptr, size_t size, size_t nitems, FILE *restrict stream);
317 fwscanf stdio.h wchar.h         fwscanf, swscanf, wscanf - convert formatted wide-character input       int fwscanf(FILE *restrict stream, const wchar_t *restrict format, ...);
318 gai_strerror    netdb.h         gai_strerror - address and name information error description   const char *gai_strerror(int ecode);
319 getaddrinfo     sys_socket.h netdb.h            freeaddrinfo, getaddrinfo - get address information     int getaddrinfo(const char *restrict nodename, const char *restrict servname, const struct addrinfo *restrict hints, struct addrinfo **restrict res);
320 getc    stdio.h         getc - get a byte from a stream int getc(FILE *stream);
321 getc_unlocked   stdio.h CX      getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking   int getc_unlocked(FILE *stream);
322 getchar stdio.h         getchar - get a byte from a .I stdin stream     int getchar(void);
323 getchar_unlocked        stdio.h CX      getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking   int getchar_unlocked(void);
324 getcwd  unistd.h                getcwd - get the pathname of the current working directory      char *getcwd(char *buf, size_t size);
325 getdate time.h  XSI     getdate - convert user format date and time     struct tm *getdate(const char *string);
326 getdate_err     time.h  XSI     getdate - convert user format date and time     
327 getdelim        stdio.h CX      getdelim, getline - read a delimited record from .I stream      ssize_t getdelim(char **restrict lineptr, size_t *restrict n, int delimiter, FILE *restrict stream);
328 getegid unistd.h                getegid - get the effective group ID    gid_t getegid(void);
329 getenv  stdlib.h                getenv - get value of an environment variable   char *getenv(const char *name);
330 geteuid unistd.h                geteuid - get the effective user ID     uid_t geteuid(void);
331 getgid  unistd.h                getgid - get the real group ID  gid_t getgid(void);
332 getgrent        grp.h   XSI     endgrent, getgrent, setgrent - group database entry functions   struct group *getgrent(void);
333 getgrgid        grp.h           getgrgid, getgrgid_r - get group database entry for a group ID  struct group *getgrgid(gid_t gid);
334 getgrgid_r      grp.h           getgrgid, getgrgid_r - get group database entry for a group ID  int getgrgid_r(gid_t gid, struct group *grp, char *buffer, size_t bufsize, struct group **result);
335 getgrnam        grp.h           getgrnam, getgrnam_r - search group database for a name struct group *getgrnam(const char *name);
336 getgrnam_r      grp.h           getgrnam, getgrnam_r - search group database for a name int getgrnam_r(const char *name, struct group *grp, char *buffer, size_t bufsize, struct group **result);
337 getgroups       unistd.h                getgroups - get supplementary group IDs int getgroups(int gidsetsize, gid_t grouplist[]);
338 gethostent      netdb.h         endhostent, gethostent, sethostent - network host database functions    struct hostent *gethostent(void);
339 gethostid       unistd.h        XSI     gethostid - get an identifier for the current host      long gethostid(void);
340 gethostname     unistd.h                gethostname - get name of current host  int gethostname(char *name, size_t namelen);
341 getitimer       sys_time.h      OB XSI  getitimer, setitimer - get and set value of interval timer      int getitimer(int which, struct itimerval *value);
342 getline stdio.h CX      getdelim, getline - read a delimited record from .I stream      ssize_t getline(char **restrict lineptr, size_t *restrict n, FILE *restrict stream);
343 getlogin        unistd.h                getlogin, getlogin_r - get login name   char *getlogin(void);
344 getlogin_r      unistd.h                getlogin, getlogin_r - get login name   int getlogin_r(char *name, size_t namesize);
345 getnameinfo     sys_socket.h netdb.h            getnameinfo - get name information      int getnameinfo(const struct sockaddr *restrict sa, socklen_t salen, char *restrict node, socklen_t nodelen, char *restrict service, socklen_t servicelen, int flags);
346 getnetbyaddr    netdb.h         endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions        struct netent *getnetbyaddr(uint32_t net, int type);
347 getnetbyname    netdb.h         endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions        struct netent *getnetbyname(const char *name);
348 getnetent       netdb.h         endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions        struct netent *getnetent(void);
349 getopt  unistd.h                getopt, optarg, opterr, optind, optopt - command option parsing int getopt(int argc, char * const argv[], const char *optstring);
350 getpeername     sys_socket.h            getpeername - get the name of the peer socket   int getpeername(int socket, struct sockaddr *restrict address, socklen_t *restrict address_len);
351 getpgid unistd.h                getpgid - get the process group ID for a process        pid_t getpgid(pid_t pid);
352 getpgrp unistd.h                getpgrp - get the process group ID of the calling process       pid_t getpgrp(void);
353 getpid  unistd.h                getpid - get the process ID     pid_t getpid(void);
354 getppid unistd.h                getppid - get the parent process ID     pid_t getppid(void);
355 getpriority     sys_resource.h  XSI     getpriority, setpriority - get and set the nice value   int getpriority(int which, id_t who);
356 getprotobyname  netdb.h         endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions   struct protoent *getprotobyname(const char *name);
357 getprotobynumber        netdb.h         endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions   struct protoent *getprotobynumber(int proto);
358 getprotoent     netdb.h         endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions   struct protoent *getprotoent(void);
359 getpwent        pwd.h   XSI     endpwent, getpwent, setpwent - user database functions  struct passwd *getpwent(void);
360 getpwnam        pwd.h           getpwnam, getpwnam_r - search user database for a name  struct passwd *getpwnam(const char *name);
361 getpwnam_r      pwd.h           getpwnam, getpwnam_r - search user database for a name  int getpwnam_r(const char *name, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result);
362 getpwuid        pwd.h           getpwuid, getpwuid_r - search user database for a user ID       struct passwd *getpwuid(uid_t uid);
363 getpwuid_r      pwd.h           getpwuid, getpwuid_r - search user database for a user ID       int getpwuid_r(uid_t uid, struct passwd *pwd, char *buffer, size_t bufsize, struct passwd **result);
364 getrlimit       sys_resource.h  XSI     getrlimit, setrlimit - control maximum resource consumption     int getrlimit(int resource, struct rlimit *rlp);
365 getrusage       sys_resource.h  XSI     getrusage - get information about resource utilization  int getrusage(int who, struct rusage *r_usage);
366 gets    stdio.h OB      gets - get a string from a .I stdin stream      char *gets(char *s);
367 getservbyname   netdb.h         endservent, getservbyname, getservbyport, getservent, setservent - network services database functions  struct servent *getservbyname(const char *name, const char *proto);
368 getservbyport   netdb.h         endservent, getservbyname, getservbyport, getservent, setservent - network services database functions  struct servent *getservbyport(int port, const char *proto);
369 getservent      netdb.h         endservent, getservbyname, getservbyport, getservent, setservent - network services database functions  struct servent *getservent(void);
370 getsid  unistd.h                getsid - get the process group ID of a session leader   pid_t getsid(pid_t pid);
371 getsockname     sys_socket.h            getsockname - get the socket name       int getsockname(int socket, struct sockaddr *restrict address, socklen_t *restrict address_len);
372 getsockopt      sys_socket.h            getsockopt - get the socket options     int getsockopt(int socket, int level, int option_name, void *restrict option_value, socklen_t *restrict option_len);
373 getsubopt       stdlib.h                getsubopt - parse suboption arguments from a string     int getsubopt(char **optionp, char * const *keylistp, char **valuep);
374 gettimeofday    sys_time.h      OB XSI  gettimeofday - get the date and time    int gettimeofday(struct timeval *restrict tp, void *restrict tzp);
375 getuid  unistd.h                getuid - get a real user ID     uid_t getuid(void);
376 getutxent       utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  struct utmpx *getutxent(void);
377 getutxid        utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  struct utmpx *getutxid(const struct utmpx *id);
378 getutxline      utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  struct utmpx *getutxline(const struct utmpx *line);
379 getwc   stdio.h wchar.h         getwc - get a wide character from a stream      wint_t getwc(FILE *stream);
380 getwchar        wchar.h         getwchar - get a wide character from a .I stdin stream  wint_t getwchar(void);
381 glob    glob.h          glob, globfree - generate pathnames matching a pattern  int glob(const char *restrict pattern, int flags, int(*errfunc)(const char *epath, int eerrno), glob_t *restrict pglob);
382 globfree        glob.h          glob, globfree - generate pathnames matching a pattern  void globfree(glob_t *pglob);
383 gmtime  time.h          gmtime, gmtime_r - convert a time value to a broken-down UTC time       struct tm *gmtime(const time_t *timer);
384 gmtime_r        time.h  CX      gmtime, gmtime_r - convert a time value to a broken-down UTC time       struct tm *gmtime_r(const time_t *restrict timer, struct tm *restrict result);
385 grantpt stdlib.h        XSI     grantpt - grant access to the slave pseudo-terminal device      int grantpt(int fildes);
386 hcreate search.h        XSI     hcreate, hdestroy, hsearch - manage hash search table   int hcreate(size_t nel);
387 hdestroy        search.h        XSI     hcreate, hdestroy, hsearch - manage hash search table   void hdestroy(void);
388 hsearch search.h        XSI     hcreate, hdestroy, hsearch - manage hash search table   ENTRY *hsearch(ENTRY item, ACTION action);
389 htonl   arpa_inet.h             htonl, htons, ntohl, ntohs - convert values between host and network byte order uint32_t htonl(uint32_t hostlong);
390 htons   arpa_inet.h             htonl, htons, ntohl, ntohs - convert values between host and network byte order uint16_t htons(uint16_t hostshort);
391 hypot   math.h          hypot, hypotf, hypotl - Euclidean distance function     double hypot(double x, double y);
392 hypotf  math.h          hypot, hypotf, hypotl - Euclidean distance function     float hypotf(float x, float y);
393 hypotl  math.h          hypot, hypotf, hypotl - Euclidean distance function     long double hypotl(long double x, long double y);
394 iconv   iconv.h         iconv - codeset conversion function     size_t iconv(iconv_t cd, char **restrict inbuf, size_t *restrict inbytesleft, char **restrict outbuf, size_t *restrict outbytesleft);
395 iconv_close     iconv.h         iconv_close - codeset conversion deallocation function  int iconv_close(iconv_t cd);
396 iconv_open      iconv.h         iconv_open - codeset conversion allocation function     iconv_t iconv_open(const char *tocode, const char *fromcode);
397 if_freenameindex        net_if.h                if_freenameindex - free memory allocated by if_nameindex        void if_freenameindex(struct if_nameindex *ptr);
398 if_indextoname  net_if.h                if_indextoname - map a network interface index to its corresponding name        char *if_indextoname(unsigned ifindex, char *ifname);
399 if_nameindex    net_if.h                if_nameindex - return all network interface names and indexes   struct if_nameindex *if_nameindex(void);
400 if_nametoindex  net_if.h                if_nametoindex - map a network interface name to its corresponding index        unsigned if_nametoindex(const char *ifname);
401 ilogb   math.h          ilogb, ilogbf, ilogbl - return an unbiased exponent     int ilogb(double x);
402 ilogbf  math.h          ilogb, ilogbf, ilogbl - return an unbiased exponent     int ilogbf(float x);
403 ilogbl  math.h          ilogb, ilogbf, ilogbl - return an unbiased exponent     int ilogbl(long double x);
404 imaxabs inttypes.h              imaxabs - return absolute value intmax_t imaxabs(intmax_t j);
405 imaxdiv inttypes.h              imaxdiv - return quotient and remainder imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
406 inet_addr       arpa_inet.h             inet_addr, inet_ntoa - IPv4 address manipulation        in_addr_t inet_addr(const char *cp);
407 inet_ntoa       arpa_inet.h             inet_addr, inet_ntoa - IPv4 address manipulation        char *inet_ntoa(struct in_addr in);
408 inet_ntop       arpa_inet.h             inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form     const char *inet_ntop(int af, const void *restrict src, char *restrict dst, socklen_t size);
409 inet_pton       arpa_inet.h             inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form     int inet_pton(int af, const char *restrict src, void *restrict dst);
410 initstate       stdlib.h        XSI     initstate, random, setstate, srandom - pseudo-random number functions   char *initstate(unsigned seed, char *state, size_t size);
411 insque  search.h        XSI     insque, remque - insert or remove an element in a queue void insque(void *element, void *pred);
412 isalnum ctype.h         isalnum, isalnum_l - test for an alphanumeric character int isalnum(int c);
413 isalnum_l       ctype.h CX      isalnum, isalnum_l - test for an alphanumeric character int isalnum_l(int c, locale_t locale);
414 isalpha ctype.h         isalpha, isalpha_l - test for an alphabetic character   int isalpha(int c);
415 isalpha_l       ctype.h CX      isalpha, isalpha_l - test for an alphabetic character   int isalpha_l(int c, locale_t locale);
416 isascii ctype.h OB XSI  isascii - test for a 7-bit US-ASCII character   int isascii(int c);
417 isatty  unistd.h                isatty - test for a terminal device     int isatty(int fildes);
418 isblank ctype.h         isblank, isblank_l - test for a blank character int isblank(int c);
419 isblank_l       ctype.h CX      isblank, isblank_l - test for a blank character int isblank_l(int c, locale_t locale);
420 iscntrl ctype.h         iscntrl, iscntrl_l - test for a control character       int iscntrl(int c);
421 iscntrl_l       ctype.h CX      iscntrl, iscntrl_l - test for a control character       int iscntrl_l(int c, locale_t locale);
422 isdigit ctype.h         isdigit, isdigit_l - test for a decimal digit   int isdigit(int c);
423 isdigit_l       ctype.h CX      isdigit, isdigit_l - test for a decimal digit   int isdigit_l(int c, locale_t locale);
424 isfinite        math.h          isfinite - test for finite value        int isfinite(real-floating x);
425 isgraph ctype.h         isgraph, isgraph_l - test for a visible character       int isgraph(int c);
426 isgraph_l       ctype.h CX      isgraph, isgraph_l - test for a visible character       int isgraph_l(int c, locale_t locale);
427 isgreater       math.h          isgreater - test if x greater than y    int isgreater(real-floating x, real-floating y);
428 isgreaterequal  math.h          isgreaterequal - test if x is greater than or equal to y        int isgreaterequal(real-floating x, real-floating y);
429 isinf   math.h          isinf - test for infinity       int isinf(real-floating x);
430 isless  math.h          isless - test if x is less than y       int isless(real-floating x, real-floating y);
431 islessequal     math.h          islessequal - test if x is less than or equal to y      int islessequal(real-floating x, real-floating y);
432 islessgreater   math.h          islessgreater - test if x is less than or greater than y        int islessgreater(real-floating x, real-floating y);
433 islower ctype.h         islower, islower_l - test for a lowercase letter        int islower(int c);
434 islower_l       ctype.h CX      islower, islower_l - test for a lowercase letter        int islower_l(int c, locale_t locale);
435 isnan   math.h          isnan - test for a NaN  int isnan(real-floating x);
436 isnormal        math.h          isnormal - test for a normal value      int isnormal(real-floating x);
437 isprint ctype.h         isprint, isprint_l - test for a printable character     int isprint(int c);
438 isprint_l       ctype.h CX      isprint, isprint_l - test for a printable character     int isprint_l(int c, locale_t locale);
439 ispunct ctype.h         ispunct, ispunct_l - test for a punctuation character   int ispunct(int c);
440 ispunct_l       ctype.h CX      ispunct, ispunct_l - test for a punctuation character   int ispunct_l(int c, locale_t locale);
441 isspace ctype.h         isspace, isspace_l - test for a white-space character   int isspace(int c);
442 isspace_l       ctype.h CX      isspace, isspace_l - test for a white-space character   int isspace_l(int c, locale_t locale);
443 isunordered     math.h          isunordered - test if arguments are unordered   int isunordered(real-floating x, real-floating y);
444 isupper ctype.h         isupper, isupper_l - test for an uppercase letter       int isupper(int c);
445 isupper_l       ctype.h CX      isupper, isupper_l - test for an uppercase letter       int isupper_l(int c, locale_t locale);
446 iswalnum        wctype.h                iswalnum, iswalnum_l - test for an alphanumeric wide-character code     int iswalnum(wint_t wc);
447 iswalnum_l      wctype.h        CX      iswalnum, iswalnum_l - test for an alphanumeric wide-character code     int iswalnum_l(wint_t wc, locale_t locale);
448 iswalpha        wctype.h                iswalpha, iswalpha_l - test for an alphabetic wide-character code       int iswalpha(wint_t wc);
449 iswalpha_l      wctype.h        CX      iswalpha, iswalpha_l - test for an alphabetic wide-character code       int iswalpha_l(wint_t wc, locale_t locale);
450 iswblank        wctype.h                iswblank, iswblank_l - test for a blank wide-character code     int iswblank(wint_t wc);
451 iswblank_l      wctype.h        CX      iswblank, iswblank_l - test for a blank wide-character code     int iswblank_l(wint_t wc, locale_t locale);
452 iswcntrl        wctype.h                iswcntrl, iswcntrl_l - test for a control wide-character code   int iswcntrl(wint_t wc);
453 iswcntrl_l      wctype.h        CX      iswcntrl, iswcntrl_l - test for a control wide-character code   int iswcntrl_l(wint_t wc, locale_t locale);
454 iswctype        wctype.h                iswctype, iswctype_l - test character for a specified class     int iswctype(wint_t wc, wctype_t charclass);
455 iswctype_l      wctype.h        CX      iswctype, iswctype_l - test character for a specified class     int iswctype_l(wint_t wc, wctype_t charclass, locale_t locale);
456 iswdigit        wctype.h                iswdigit, iswdigit_l - test for a decimal digit wide-character code     int iswdigit(wint_t wc);
457 iswdigit_l      wctype.h        CX      iswdigit, iswdigit_l - test for a decimal digit wide-character code     int iswdigit_l(wint_t wc, locale_t locale);
458 iswgraph        wctype.h                iswgraph, iswgraph_l - test for a visible wide-character code   int iswgraph(wint_t wc);
459 iswgraph_l      wctype.h        CX      iswgraph, iswgraph_l - test for a visible wide-character code   int iswgraph_l(wint_t wc, locale_t locale);
460 iswlower        wctype.h                iswlower, iswlower_l - test for a lowercase letter wide-character code  int iswlower(wint_t wc);
461 iswlower_l      wctype.h        CX      iswlower, iswlower_l - test for a lowercase letter wide-character code  int iswlower_l(wint_t wc, locale_t locale);
462 iswprint        wctype.h                iswprint, iswprint_l - test for a printable wide-character code int iswprint(wint_t wc);
463 iswprint_l      wctype.h        CX      iswprint, iswprint_l - test for a printable wide-character code int iswprint_l(wint_t wc, locale_t locale);
464 iswpunct        wctype.h                iswpunct, iswpunct_l - test for a punctuation wide-character code       int iswpunct(wint_t wc);
465 iswpunct_l      wctype.h        CX      iswpunct, iswpunct_l - test for a punctuation wide-character code       int iswpunct_l(wint_t wc, locale_t locale);
466 iswspace        wctype.h                iswspace, iswspace_l - test for a white-space wide-character code       int iswspace(wint_t wc);
467 iswspace_l      wctype.h        CX      iswspace, iswspace_l - test for a white-space wide-character code       int iswspace_l(wint_t wc, locale_t locale);
468 iswupper        wctype.h                iswupper, iswupper_l - test for an uppercase letter wide-character code int iswupper(wint_t wc);
469 iswupper_l      wctype.h        CX      iswupper, iswupper_l - test for an uppercase letter wide-character code int iswupper_l(wint_t wc, locale_t locale);
470 iswxdigit       wctype.h                iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code       int iswxdigit(wint_t wc);
471 iswxdigit_l     wctype.h        CX      iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code       int iswxdigit_l(wint_t wc, locale_t locale);
472 isxdigit        ctype.h         isxdigit, isxdigit_l - test for a hexadecimal digit     int isxdigit(int c);
473 isxdigit_l      ctype.h CX      isxdigit, isxdigit_l - test for a hexadecimal digit     int isxdigit_l(int c, locale_t locale);
474 j0      math.h  XSI     j0, j1, jn - Bessel functions of the first kind double j0(double x);
475 j1      math.h  XSI     j0, j1, jn - Bessel functions of the first kind double j1(double x);
476 jn      math.h  XSI     j0, j1, jn - Bessel functions of the first kind double jn(int n, double x);
477 jrand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   long jrand48(unsigned short xsubi[3]);
478 kill    signal.h        CX      kill - send a signal to a process or a group of processes       int kill(pid_t pid, int sig);
479 killpg  signal.h        XSI     killpg - send a signal to a process group       int killpg(pid_t pgrp, int sig);
480 l64a    stdlib.h        XSI     a64l, l64a - convert between a 32-bit integer and a radix-64 ASCII string       char *l64a(long value);
481 labs    stdlib.h                labs, llabs - return a long integer absolute value      long labs(long i);
482 lchown  unistd.h                lchown - change the owner and group of a symbolic link  int lchown(const char *path, uid_t owner, gid_t group);
483 lcong48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   void lcong48(unsigned short param[7]);
484 ldexp   math.h          ldexp, ldexpf, ldexpl - load exponent of a floating-point number        double ldexp(double x, int exp);
485 ldexpf  math.h          ldexp, ldexpf, ldexpl - load exponent of a floating-point number        float ldexpf(float x, int exp);
486 ldexpl  math.h          ldexp, ldexpf, ldexpl - load exponent of a floating-point number        long double ldexpl(long double x, int exp);
487 ldiv    stdlib.h                ldiv, lldiv - compute quotient and remainder of a long division ldiv_t ldiv(long numer, long denom);
488 lfind   search.h        XSI     lsearch, lfind - linear search and update       void *lfind(const void *key, const void *base, size_t *nelp, size_t width, int (*compar)(const void *, const void *));
489 lgamma  math.h          lgamma, lgammaf, lgammal, signgam - log gamma function  double lgamma(double x);
490 lgammaf math.h          lgamma, lgammaf, lgammal, signgam - log gamma function  float lgammaf(float x);
491 lgammal math.h          lgamma, lgammaf, lgammal, signgam - log gamma function  long double lgammal(long double x);
492 link    unistd.h                link, linkat - link one file to another file relative to two directory file descriptors int link(const char *path1, const char *path2);
493 linkat  unistd.h                link, linkat - link one file to another file relative to two directory file descriptors int linkat(int fd1, const char *path1, int fd2, const char *path2, int flag);
494 lio_listio      aio.h           lio_listio - list directed I/O  int lio_listio(int mode, struct aiocb *restrict const list[restrict], int nent, struct sigevent *restrict sig);
495 listen  sys_socket.h            listen - listen for socket connections and limit the queue of incoming connections      int listen(int socket, int backlog);
496 llabs   stdlib.h                labs, llabs - return a long integer absolute value      long long llabs(long long i);
497 lldiv   stdlib.h                ldiv, lldiv - compute quotient and remainder of a long division lldiv_t lldiv(long long numer, long long denom);
498 llrint  math.h          llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction  long long llrint(double x);
499 llrintf math.h          llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction  long long llrintf(float x);
500 llrintl math.h          llrint, llrintf, llrintl - round to the nearest integer value using current rounding direction  long long llrintl(long double x);
501 llround math.h          llround, llroundf, llroundl - round to nearest integer value    long long llround(double x);
502 llroundf        math.h          llround, llroundf, llroundl - round to nearest integer value    long long llroundf(float x);
503 llroundl        math.h          llround, llroundf, llroundl - round to nearest integer value    long long llroundl(long double x);
504 localeconv      locale.h                localeconv - return locale-specific information struct lconv *localeconv(void);
505 localtime       time.h          localtime, localtime_r - convert a time value to a broken-down local time       struct tm *localtime(const time_t *timer);
506 localtime_r     time.h  CX      localtime, localtime_r - convert a time value to a broken-down local time       struct tm *localtime_r(const time_t *restrict timer, struct tm *restrict result);
507 lockf   unistd.h        XSI     lockf - record locking on files int lockf(int fildes, int function, off_t size);
508 log     math.h          log, logf, logl - natural logarithm function    double log(double x);
509 log10   math.h          log10, log10f, log10l - base 10 logarithm function      double log10(double x);
510 log10f  math.h          log10, log10f, log10l - base 10 logarithm function      float log10f(float x);
511 log10l  math.h          log10, log10f, log10l - base 10 logarithm function      long double log10l(long double x);
512 log1p   math.h          log1p, log1pf, log1pl - compute a natural logarithm     double log1p(double x);
513 log1pf  math.h          log1p, log1pf, log1pl - compute a natural logarithm     float log1pf(float x);
514 log1pl  math.h          log1p, log1pf, log1pl - compute a natural logarithm     long double log1pl(long double x);
515 log2    math.h          log2, log2f, log2l - compute base 2 logarithm functions double log2(double x);
516 log2f   math.h          log2, log2f, log2l - compute base 2 logarithm functions float log2f(float x);
517 log2l   math.h          log2, log2f, log2l - compute base 2 logarithm functions long double log2l(long double x);
518 logb    math.h          logb, logbf, logbl - radix-independent exponent double logb(double x);
519 logbf   math.h          logb, logbf, logbl - radix-independent exponent float logbf(float x);
520 logbl   math.h          logb, logbf, logbl - radix-independent exponent long double logbl(long double x);
521 logf    math.h          log, logf, logl - natural logarithm function    float logf(float x);
522 logl    math.h          log, logf, logl - natural logarithm function    long double logl(long double x);
523 longjmp setjmp.h                longjmp - non-local goto        void longjmp(jmp_buf env, int val);
524 lrand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   long lrand48(void);
525 lrint   math.h          lrint, lrintf, lrintl - round to nearest integer value using current rounding direction long lrint(double x);
526 lrintf  math.h          lrint, lrintf, lrintl - round to nearest integer value using current rounding direction long lrintf(float x);
527 lrintl  math.h          lrint, lrintf, lrintl - round to nearest integer value using current rounding direction long lrintl(long double x);
528 lround  math.h          lround, lroundf, lroundl - round to nearest integer value       long lround(double x);
529 lroundf math.h          lround, lroundf, lroundl - round to nearest integer value       long lroundf(float x);
530 lroundl math.h          lround, lroundf, lroundl - round to nearest integer value       long lroundl(long double x);
531 lsearch search.h        XSI     lsearch, lfind - linear search and update       void *lsearch(const void *key, void *base, size_t *nelp, size_t width, int (*compar)(const void *, const void *));
532 lseek   unistd.h                lseek - move the read/write file offset off_t lseek(int fildes, off_t offset, int whence);
533 lstat   sys_stat.h              fstatat, lstat, stat - get file status  int lstat(const char *restrict path, struct stat *restrict buf);
534 malloc  stdlib.h                malloc - a memory allocator     void *malloc(size_t size);
535 mblen   stdlib.h                mblen - get number of bytes in a character      int mblen(const char *s, size_t n);
536 mbrlen  wchar.h         mbrlen - get number of bytes in a character (restartable)       size_t mbrlen(const char *restrict s, size_t n, mbstate_t *restrict ps);
537 mbrtowc wchar.h         mbrtowc - convert a character to a wide-character code (restartable)    size_t mbrtowc(wchar_t *restrict pwc, const char *restrict s, size_t n, mbstate_t *restrict ps);
538 mbsinit wchar.h         mbsinit - determine conversion object status    int mbsinit(const mbstate_t *ps);
539 mbsnrtowcs      wchar.h CX      mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)     size_t mbsnrtowcs(wchar_t *restrict dst, const char **restrict src, size_t nmc, size_t len, mbstate_t *restrict ps);
540 mbsrtowcs       wchar.h         mbsnrtowcs, mbsrtowcs - convert a character string to a wide-character string (restartable)     size_t mbsrtowcs(wchar_t *restrict dst, const char **restrict src, size_t len, mbstate_t *restrict ps);
541 mbstowcs        stdlib.h                mbstowcs - convert a character string to a wide-character string        size_t mbstowcs(wchar_t *restrict pwcs, const char *restrict s, size_t n);
542 mbtowc  stdlib.h                mbtowc - convert a character to a wide-character code   int mbtowc(wchar_t *restrict pwc, const char *restrict s, size_t n);
543 memccpy string.h        XSI     memccpy - copy bytes in memory  void *memccpy(void *restrict s1, const void *restrict s2, int c, size_t n);
544 memchr  string.h                memchr - find byte in memory    void *memchr(const void *s, int c, size_t n);
545 memcmp  string.h                memcmp - compare bytes in memory        int memcmp(const void *s1, const void *s2, size_t n);
546 memcpy  string.h                memcpy - copy bytes in memory   void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
547 memmove string.h                memmove - copy bytes in memory with overlapping areas   void *memmove(void *s1, const void *s2, size_t n);
548 memset  string.h                memset - set bytes in memory    void *memset(void *s, int c, size_t n);
549 mkdir   sys_stat.h              mkdir, mkdirat - make a directory relative to directory file descriptor int mkdir(const char *path, mode_t mode);
550 mkdirat sys_stat.h              mkdir, mkdirat - make a directory relative to directory file descriptor int mkdirat(int fd, const char *path, mode_t mode);
551 mkdtemp stdlib.h        CX      mkdtemp, mkstemp - create a unique directory or file    char *mkdtemp(char *template);
552 mkfifo  sys_stat.h              mkfifo, mkfifoat - make a FIFO special file relative to directory file descriptor       int mkfifo(const char *path, mode_t mode);
553 mkfifoat        sys_stat.h              mkfifo, mkfifoat - make a FIFO special file relative to directory file descriptor       int mkfifoat(int fd, const char *path, mode_t mode);
554 mknod   sys_stat.h      XSI     mknod, mknodat - make directory, special file, or regular file  int mknod(const char *path, mode_t mode, dev_t dev);
555 mknodat sys_stat.h      XSI     mknod, mknodat - make directory, special file, or regular file  int mknodat(int fd, const char *path, mode_t mode, dev_t dev);
556 mkstemp stdlib.h        CX      mkdtemp, mkstemp - create a unique directory or file    int mkstemp(char *template);
557 mktime  time.h          mktime - convert broken-down time into time since the Epoch     time_t mktime(struct tm *timeptr);
558 mlock   sys_mman.h      MLR     mlock, munlock - lock or unlock a range of process address space (<b>REALTIME</b>)      int mlock(const void *addr, size_t len);
559 mlockall        sys_mman.h      ML      mlockall, munlockall - lock/unlock the address space of a process (<b>REALTIME</b>)     int mlockall(int flags);
560 mmap    sys_mman.h              mmap - map pages of memory      void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off);
561 modf    math.h          modf, modff, modfl - decompose a floating-point number  double modf(double x, double *iptr);
562 modff   math.h          modf, modff, modfl - decompose a floating-point number  float modff(float value, float *iptr);
563 modfl   math.h          modf, modff, modfl - decompose a floating-point number  long double modfl(long double value, long double *iptr);
564 mprotect        sys_mman.h              mprotect - set protection of memory mapping     int mprotect(void *addr, size_t len, int prot);
565 mq_close        mqueue.h        MSG     mq_close - close a message queue (<b>REALTIME</b>)      int mq_close(mqd_t mqdes);
566 mq_getattr      mqueue.h        MSG     mq_getattr - get message queue attributes (<b>REALTIME</b>)     int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat);
567 mq_notify       mqueue.h        MSG     mq_notify - notify process that a message is available (<b>REALTIME</b>)        int mq_notify(mqd_t mqdes, const struct sigevent *notification);
568 mq_open mqueue.h        MSG     mq_open - open a message queue (<b>REALTIME</b>)        mqd_t mq_open(const char *name, int oflag, ...);
569 mq_receive      mqueue.h mqueue.h time.h        MSG     mq_receive, mq_timedreceive - receive a message from a message queue (<b>REALTIME</b>)  ssize_t mq_receive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio);
570 mq_send mqueue.h mqueue.h time.h        MSG     mq_send, mq_timedsend - send a message to a message queue (<b>REALTIME</b>)     int mq_send(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio);
571 mq_setattr      mqueue.h        MSG     mq_setattr - set message queue attributes (<b>REALTIME</b>)     int mq_setattr(mqd_t mqdes, const struct mq_attr *restrict mqstat, struct mq_attr *restrict omqstat);
572 mq_timedreceive mqueue.h mqueue.h time.h        MSG     mq_receive, mq_timedreceive - receive a message from a message queue (<b>REALTIME</b>)  ssize_t mq_timedreceive(mqd_t mqdes, char *restrict msg_ptr, size_t msg_len, unsigned *restrict msg_prio, const struct timespec *restrict abstime);
573 mq_timedsend    mqueue.h mqueue.h time.h        MSG     mq_send, mq_timedsend - send a message to a message queue (<b>REALTIME</b>)     int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec *abstime);
574 mq_unlink       mqueue.h        MSG     mq_unlink - remove a message queue (<b>REALTIME</b>)    int mq_unlink(const char *name);
575 mrand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   long mrand48(void);
576 msgctl  sys_msg.h       XSI     msgctl - XSI message control operations int msgctl(int msqid, int cmd, struct msqid_ds *buf);
577 msgget  sys_msg.h       XSI     msgget - get the XSI message queue identifier   int msgget(key_t key, int msgflg);
578 msgrcv  sys_msg.h       XSI     msgrcv - XSI message receive operation  ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
579 msgsnd  sys_msg.h       XSI     msgsnd - XSI message send operation     int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
580 msync   sys_mman.h      XSI     msync - synchronize memory with physical storage        int msync(void *addr, size_t len, int flags);
581 munlock sys_mman.h      MLR     mlock, munlock - lock or unlock a range of process address space (<b>REALTIME</b>)      int munlock(const void *addr, size_t len);
582 munlockall      sys_mman.h      ML      mlockall, munlockall - lock/unlock the address space of a process (<b>REALTIME</b>)     int munlockall(void);
583 munmap  sys_mman.h              munmap - unmap pages of memory  int munmap(void *addr, size_t len);
584 nan     math.h          nan, nanf, nanl - return quiet NaN      double nan(const char *tagp);
585 nanf    math.h          nan, nanf, nanl - return quiet NaN      float nanf(const char *tagp);
586 nanl    math.h          nan, nanf, nanl - return quiet NaN      long double nanl(const char *tagp);
587 nanosleep       time.h  CX      nanosleep - high resolution sleep       int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);
588 nearbyint       math.h          nearbyint, nearbyintf, nearbyintl - floating-point rounding functions   double nearbyint(double x);
589 nearbyintf      math.h          nearbyint, nearbyintf, nearbyintl - floating-point rounding functions   float nearbyintf(float x);
590 nearbyintl      math.h          nearbyint, nearbyintf, nearbyintl - floating-point rounding functions   long double nearbyintl(long double x);
591 newlocale       locale.h        CX      newlocale - create or modify a locale object    locale_t newlocale(int category_mask, const char *locale, locale_t base);
592 nextafter       math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      double nextafter(double x, double y);
593 nextafterf      math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      float nextafterf(float x, float y);
594 nextafterl      math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      long double nextafterl(long double x, long double y);
595 nexttoward      math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      double nexttoward(double x, long double y);
596 nexttowardf     math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      float nexttowardf(float x, long double y);
597 nexttowardl     math.h          nextafter, nextafterf, nextafterl, nexttoward, nexttowardf, nexttowardl - next representable floating-point number      long double nexttowardl(long double x, long double y);
598 nftw    ftw.h   XSI     nftw - walk a file tree int nftw(const char *path, int (*fn)(const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags);
599 nice    unistd.h        XSI     nice - change the nice value of a process       int nice(int incr);
600 nl_langinfo     langinfo.h              nl_langinfo, nl_langinfo_l - language information       char *nl_langinfo(nl_item item);
601 nl_langinfo_l   langinfo.h              nl_langinfo, nl_langinfo_l - language information       char *nl_langinfo_l(nl_item item, locale_t locale);
602 nrand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   long nrand48(unsigned short xsubi[3]);
603 ntohl   arpa_inet.h             htonl, htons, ntohl, ntohs - convert values between host and network byte order uint32_t ntohl(uint32_t netlong);
604 ntohs   arpa_inet.h             htonl, htons, ntohl, ntohs - convert values between host and network byte order uint16_t ntohs(uint16_t netshort);
605 open    sys/stat.h fcntl.h      OH      open, openat - open file relative to directory file descriptor  int open(const char *path, int oflag, ...);
606 open_memstream  stdio.h wchar.h CX      open_memstream, open_wmemstream - open a dynamic memory buffer stream   FILE *open_memstream(char **bufp, size_t *sizep);
607 open_wmemstream stdio.h wchar.h CX      open_memstream, open_wmemstream - open a dynamic memory buffer stream   FILE *open_wmemstream(wchar_t **bufp, size_t *sizep);
608 openat  sys/stat.h fcntl.h      OH      open, openat - open file relative to directory file descriptor  int openat(int fd, const char *path, int oflag, ...);
609 opendir dirent.h                fdopendir, opendir - open directory associated with file descriptor     DIR *fdopendir(int fd);
610 openlog syslog.h        XSI     closelog, openlog, setlogmask, syslog - control system log      void openlog(const char *ident, int logopt, int facility);
611 optarg  unistd.h                getopt, optarg, opterr, optind, optopt - command option parsing 
612 opterr  unistd.h                getopt, optarg, opterr, optind, optopt - command option parsing 
613 optind  unistd.h                getopt, optarg, opterr, optind, optopt - command option parsing 
614 optopt  unistd.h                getopt, optarg, opterr, optind, optopt - command option parsing 
615 pathconf        unistd.h                fpathconf, pathconf - get configurable pathname variables       long fpathconf(int fildes, int name);
616 pause   unistd.h                pause - suspend the thread until a signal is received   int pause(void);
617 pclose  stdio.h CX      pclose - close a pipe stream to or from a process       int pclose(FILE *stream);
618 perror  stdio.h         perror - write error messages to standard error void perror(const char *s);
619 pipe    unistd.h                pipe - create an interprocess channel   int pipe(int fildes[2]);
620 poll    poll.h          poll - input/output multiplexing        int poll(struct pollfd fds[], nfds_t nfds, int timeout);
621 popen   stdio.h CX      popen - initiate pipe streams to or from a process      FILE *popen(const char *command, const char *mode);
622 posix_fadvise   fcntl.h ADV     posix_fadvise - file advisory information (<b>ADVANCED REALTIME</b>)    int posix_fadvise(int fd, off_t offset, off_t len, int advice);
623 posix_fallocate fcntl.h ADV     posix_fallocate - file space control (<b>ADVANCED REALTIME</b>) int posix_fallocate(int fd, off_t offset, off_t len);
624 posix_madvise   sys_mman.h      ADV     posix_madvise - memory advisory information and alignment control (<b>ADVANCED REALTIME</b>)    int posix_madvise(void *addr, size_t len, int advice);
625 posix_mem_offset        sys_mman.h      TYM     posix_mem_offset - find offset and length of a mapped typed memory block (<b>ADVANCED REALTIME</b>)     int posix_mem_offset(const void *restrict addr, size_t len, off_t *restrict off, size_t *restrict contig_len, int *restrict fildes);
626 posix_memalign  stdlib.h        ADV     posix_memalign - aligned memory allocation (<b>ADVANCED REALTIME</b>)   int posix_memalign(void **memptr, size_t alignment, size_t size);
627 posix_openpt    stdlib.h fcntl.h        XSI     posix_openpt - open a pseudo-terminal device    int posix_openpt(int oflag);
628 posix_spawn     spawn.h SPN     posix_spawn, posix_spawnp - spawn a process (<b>ADVANCED REALTIME</b>)  int posix_spawn(pid_t *restrict pid, const char *restrict path, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t *restrict attrp, char *const argv[restrict], char *const envp[restrict]);
629 posix_spawn_file_actions_addclose       spawn.h SPN     posix_spawn_file_actions_addclose, posix_spawn_file_actions_addopen - add close or open action to spawn file actions object (<b>ADVANCED REALTIME</b>)  int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *file_actions, int fildes);
630 posix_spawn_file_actions_adddup2        spawn.h SPN     posix_spawn_file_actions_adddup2 - add dup2 action to spawn file actions object (<b>ADVANCED REALTIME</b>)      int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *file_actions, int fildes, int newfildes);
631 posix_spawn_file_actions_addopen        spawn.h SPN     posix_spawn_file_actions_addclose, posix_spawn_file_actions_addopen - add close or open action to spawn file actions object (<b>ADVANCED REALTIME</b>)  int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *restrict file_actions, int fildes, const char *restrict path, int oflag, mode_t mode);
632 posix_spawn_file_actions_destroy        spawn.h SPN     posix_spawn_file_actions_destroy, posix_spawn_file_actions_init - destroy and initialize spawn file actions object (<b>ADVANCED REALTIME</b>)   int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *file_actions);
633 posix_spawn_file_actions_init   spawn.h SPN     posix_spawn_file_actions_destroy, posix_spawn_file_actions_init - destroy and initialize spawn file actions object (<b>ADVANCED REALTIME</b>)   int posix_spawn_file_actions_init(posix_spawn_file_actions_t *file_actions);
634 posix_spawnattr_destroy spawn.h SPN     posix_spawnattr_destroy, posix_spawnattr_init - destroy and initialize spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_destroy(posix_spawnattr_t *attr);
635 posix_spawnattr_getflags        spawn.h SPN     posix_spawnattr_getflags, posix_spawnattr_setflags - get and set the spawn-flags attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)      int posix_spawnattr_getflags(const posix_spawnattr_t *restrict attr, short *restrict flags);
636 posix_spawnattr_getpgroup       spawn.h SPN     posix_spawnattr_getpgroup, posix_spawnattr_setpgroup - get and set the spawn-pgroup attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)   int posix_spawnattr_getpgroup(const posix_spawnattr_t *restrict attr, pid_t *restrict pgroup);
637 posix_spawnattr_getschedparam   spawn.h sched.h SPN PS  posix_spawnattr_getschedparam, posix_spawnattr_setschedparam - get and set the spawn-schedparam attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr, struct sched_param *restrict schedparam);
638 posix_spawnattr_getschedpolicy  spawn.h sched.h SPN PS  posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy - get and set the spawn-schedpolicy attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)    int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict schedpolicy);
639 posix_spawnattr_getsigdefault   signal.h spawn.h        SPN     posix_spawnattr_getsigdefault, posix_spawnattr_setsigdefault - get and set the spawn-sigdefault attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_getsigdefault(const posix_spawnattr_t *restrict attr, sigset_t *restrict sigdefault);
640 posix_spawnattr_getsigmask      signal.h spawn.h        SPN     posix_spawnattr_getsigmask, posix_spawnattr_setsigmask - get and set the spawn-sigmask attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)        int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict sigmask);
641 posix_spawnattr_init    spawn.h SPN     posix_spawnattr_destroy, posix_spawnattr_init - destroy and initialize spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_init(posix_spawnattr_t *attr);
642 posix_spawnattr_setflags        spawn.h SPN     posix_spawnattr_getflags, posix_spawnattr_setflags - get and set the spawn-flags attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)      int posix_spawnattr_setflags(posix_spawnattr_t *attr, short flags);
643 posix_spawnattr_setpgroup       spawn.h SPN     posix_spawnattr_getpgroup, posix_spawnattr_setpgroup - get and set the spawn-pgroup attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)   int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgroup);
644 posix_spawnattr_setschedparam   spawn.h sched.h SPN PS  posix_spawnattr_getschedparam, posix_spawnattr_setschedparam - get and set the spawn-schedparam attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr, const struct sched_param *restrict schedparam);
645 posix_spawnattr_setschedpolicy  spawn.h sched.h SPN PS  posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy - get and set the spawn-schedpolicy attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)    int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int schedpolicy);
646 posix_spawnattr_setsigdefault   signal.h spawn.h        SPN     posix_spawnattr_getsigdefault, posix_spawnattr_setsigdefault - get and set the spawn-sigdefault attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)       int posix_spawnattr_setsigdefault(posix_spawnattr_t *restrict attr, const sigset_t *restrict sigdefault);
647 posix_spawnattr_setsigmask      signal.h spawn.h        SPN     posix_spawnattr_getsigmask, posix_spawnattr_setsigmask - get and set the spawn-sigmask attribute of a spawn attributes object (<b>ADVANCED REALTIME</b>)        int posix_spawnattr_setsigmask(posix_spawnattr_t *restrict attr, const sigset_t *restrict sigmask);
648 posix_spawnp    spawn.h SPN     posix_spawn, posix_spawnp - spawn a process (<b>ADVANCED REALTIME</b>)  int posix_spawnp(pid_t *restrict pid, const char *restrict file, const posix_spawn_file_actions_t *file_actions, const posix_spawnattr_t *restrict attrp, char *const argv[restrict], char *const envp[restrict]);
649 posix_typed_mem_get_info        sys_mman.h      TYM     posix_typed_mem_get_info - query typed memory information (<b>ADVANCED REALTIME</b>)    int posix_typed_mem_get_info(int fildes, struct posix_typed_mem_info *info);
650 posix_typed_mem_open    sys_mman.h      TYM     posix_typed_mem_open - open a typed memory object (<b>ADVANCED REALTIME</b>)    int posix_typed_mem_open(const char *name, int oflag, int tflag);
651 pow     math.h          pow, powf, powl - power function        double pow(double x, double y);
652 powf    math.h          pow, powf, powl - power function        float powf(float x, float y);
653 powl    math.h          pow, powf, powl - power function        long double powl(long double x, long double y);
654 pread   unistd.h                pread, read - read from a file  ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
655 printf  stdio.h         dprintf, fprintf, printf, snprintf, sprintf - print formatted output    int dprintf(int fildes, const char *restrict format, ...);
656 pselect sys_select.h            pselect, select - synchronous I/O multiplexing  int pselect(int nfds, fd_set *restrict readfds, fd_set *restrict writefds, fd_set *restrict errorfds, const struct timespec *restrict timeout, const sigset_t *restrict sigmask);
657 psiginfo        signal.h        CX      psiginfo, psignal - print signal information to standard error  void psiginfo(const siginfo_t *pinfo, const char *message);
658 psignal signal.h        CX      psiginfo, psignal - print signal information to standard error  void psignal(int signum, const char *message);
659 pthread_atfork  pthread.h               pthread_atfork - register fork handlers int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void));
660 pthread_attr_destroy    pthread.h               pthread_attr_destroy, pthread_attr_init - destroy and initialize the thread attributes object   int pthread_attr_destroy(pthread_attr_t *attr);
661 pthread_attr_getdetachstate     pthread.h               pthread_attr_getdetachstate, pthread_attr_setdetachstate - get and set the detachstate attribute        int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate);
662 pthread_attr_getguardsize       pthread.h               pthread_attr_getguardsize, pthread_attr_setguardsize - get and set the thread guardsize attribute       int pthread_attr_getguardsize(const pthread_attr_t *restrict attr, size_t *restrict guardsize);
663 pthread_attr_getinheritsched    pthread.h       TPS     pthread_attr_getinheritsched, pthread_attr_setinheritsched - get and set the inheritsched attribute (<b>REALTIME THREADS</b>)   int pthread_attr_getinheritsched(const pthread_attr_t *restrict attr, int *restrict inheritsched);
664 pthread_attr_getschedparam      pthread.h               pthread_attr_getschedparam, pthread_attr_setschedparam - get and set the schedparam attribute   int pthread_attr_getschedparam(const pthread_attr_t *restrict attr, struct sched_param *restrict param);
665 pthread_attr_getschedpolicy     pthread.h       TPS     pthread_attr_getschedpolicy, pthread_attr_setschedpolicy - get and set the schedpolicy attribute (<b>REALTIME THREADS</b>)      int pthread_attr_getschedpolicy(const pthread_attr_t *restrict attr, int *restrict policy);
666 pthread_attr_getscope   pthread.h       TPS     pthread_attr_getscope, pthread_attr_setscope - get and set the contentionscope attribute (<b>REALTIME THREADS</b>)      int pthread_attr_getscope(const pthread_attr_t *restrict attr, int *restrict contentionscope);
667 pthread_attr_getstack   pthread.h       TSA TSS pthread_attr_getstack, pthread_attr_setstack - get and set stack attributes     int pthread_attr_getstack(const pthread_attr_t *restrict attr, void **restrict stackaddr, size_t *restrict stacksize);
668 pthread_attr_getstacksize       pthread.h       TSS     pthread_attr_getstacksize, pthread_attr_setstacksize - get and set the stacksize attribute      int pthread_attr_getstacksize(const pthread_attr_t *restrict attr, size_t *restrict stacksize);
669 pthread_attr_init       pthread.h               pthread_attr_destroy, pthread_attr_init - destroy and initialize the thread attributes object   int pthread_attr_init(pthread_attr_t *attr);
670 pthread_attr_setdetachstate     pthread.h               pthread_attr_getdetachstate, pthread_attr_setdetachstate - get and set the detachstate attribute        int pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate);
671 pthread_attr_setguardsize       pthread.h               pthread_attr_getguardsize, pthread_attr_setguardsize - get and set the thread guardsize attribute       int pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize);
672 pthread_attr_setinheritsched    pthread.h       TPS     pthread_attr_getinheritsched, pthread_attr_setinheritsched - get and set the inheritsched attribute (<b>REALTIME THREADS</b>)   int pthread_attr_setinheritsched(pthread_attr_t *attr, int inheritsched);
673 pthread_attr_setschedparam      pthread.h               pthread_attr_getschedparam, pthread_attr_setschedparam - get and set the schedparam attribute   int pthread_attr_setschedparam(pthread_attr_t *restrict attr, const struct sched_param *restrict param);
674 pthread_attr_setschedpolicy     pthread.h       TPS     pthread_attr_getschedpolicy, pthread_attr_setschedpolicy - get and set the schedpolicy attribute (<b>REALTIME THREADS</b>)      int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy);
675 pthread_attr_setscope   pthread.h       TPS     pthread_attr_getscope, pthread_attr_setscope - get and set the contentionscope attribute (<b>REALTIME THREADS</b>)      int pthread_attr_setscope(pthread_attr_t *attr, int contentionscope);
676 pthread_attr_setstack   pthread.h       TSA TSS pthread_attr_getstack, pthread_attr_setstack - get and set stack attributes     int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr, size_t stacksize);
677 pthread_attr_setstacksize       pthread.h       TSS     pthread_attr_getstacksize, pthread_attr_setstacksize - get and set the stacksize attribute      int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize);
678 pthread_barrier_destroy pthread.h               pthread_barrier_destroy, pthread_barrier_init - destroy and initialize a barrier object int pthread_barrier_destroy(pthread_barrier_t *barrier);
679 pthread_barrier_init    pthread.h               pthread_barrier_destroy, pthread_barrier_init - destroy and initialize a barrier object int pthread_barrier_init(pthread_barrier_t *restrict barrier, const pthread_barrierattr_t *restrict attr, unsigned count);
680 pthread_barrier_wait    pthread.h               pthread_barrier_wait - synchronize at a barrier int pthread_barrier_wait(pthread_barrier_t *barrier);
681 pthread_barrierattr_destroy     pthread.h               pthread_barrierattr_destroy, pthread_barrierattr_init - destroy and initialize the barrier attributes object    int pthread_barrierattr_destroy(pthread_barrierattr_t *attr);
682 pthread_barrierattr_getpshared  pthread.h       TSH     pthread_barrierattr_getpshared, pthread_barrierattr_setpshared - get and set the process-shared attribute of the barrier attributes object      int pthread_barrierattr_getpshared(const pthread_barrierattr_t *restrict attr, int *restrict pshared);
683 pthread_barrierattr_init        pthread.h               pthread_barrierattr_destroy, pthread_barrierattr_init - destroy and initialize the barrier attributes object    int pthread_barrierattr_init(pthread_barrierattr_t *attr);
684 pthread_barrierattr_setpshared  pthread.h       TSH     pthread_barrierattr_getpshared, pthread_barrierattr_setpshared - get and set the process-shared attribute of the barrier attributes object      int pthread_barrierattr_setpshared(pthread_barrierattr_t *attr, int pshared);
685 pthread_cancel  pthread.h               pthread_cancel - cancel execution of a thread   int pthread_cancel(pthread_t thread);
686 pthread_cleanup_pop     pthread.h               pthread_cleanup_pop, pthread_cleanup_push - establish cancellation handlers     void pthread_cleanup_pop(int execute);
687 pthread_cleanup_push    pthread.h               pthread_cleanup_pop, pthread_cleanup_push - establish cancellation handlers     void pthread_cleanup_push(void (*routine)(void*), void *arg);
688 pthread_cond_broadcast  pthread.h               pthread_cond_broadcast, pthread_cond_signal - broadcast or signal a condition   int pthread_cond_broadcast(pthread_cond_t *cond);
689 pthread_cond_destroy    pthread.h               pthread_cond_destroy, pthread_cond_init - destroy and initialize condition variables    int pthread_cond_destroy(pthread_cond_t *cond);
690 pthread_cond_init       pthread.h               pthread_cond_destroy, pthread_cond_init - destroy and initialize condition variables    int pthread_cond_init(pthread_cond_t *restrict cond, const pthread_condattr_t *restrict attr);
691 pthread_cond_signal     pthread.h               pthread_cond_broadcast, pthread_cond_signal - broadcast or signal a condition   int pthread_cond_signal(pthread_cond_t *cond);
692 pthread_cond_timedwait  pthread.h               pthread_cond_timedwait, pthread_cond_wait - wait on a condition int pthread_cond_timedwait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex, const struct timespec *restrict abstime);
693 pthread_cond_wait       pthread.h               pthread_cond_timedwait, pthread_cond_wait - wait on a condition int pthread_cond_wait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex);
694 pthread_condattr_destroy        pthread.h               pthread_condattr_destroy, pthread_condattr_init - destroy and initialize the condition variable attributes object       int pthread_condattr_destroy(pthread_condattr_t *attr);
695 pthread_condattr_getclock       pthread.h               pthread_condattr_getclock, pthread_condattr_setclock - get and set the clock selection condition variable attribute     int pthread_condattr_getclock(const pthread_condattr_t *restrict attr, clockid_t *restrict clock_id);
696 pthread_condattr_getpshared     pthread.h       TSH     pthread_condattr_getpshared, pthread_condattr_setpshared - get and set the process-shared condition variable attributes int pthread_condattr_getpshared(const pthread_condattr_t *restrict attr, int *restrict pshared);
697 pthread_condattr_init   pthread.h               pthread_condattr_destroy, pthread_condattr_init - destroy and initialize the condition variable attributes object       int pthread_condattr_init(pthread_condattr_t *attr);
698 pthread_condattr_setclock       pthread.h               pthread_condattr_getclock, pthread_condattr_setclock - get and set the clock selection condition variable attribute     int pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id);
699 pthread_condattr_setpshared     pthread.h       TSH     pthread_condattr_getpshared, pthread_condattr_setpshared - get and set the process-shared condition variable attributes int pthread_condattr_setpshared(pthread_condattr_t *attr, int pshared);
700 pthread_create  pthread.h               pthread_create - thread creation        int pthread_create(pthread_t *restrict thread, const pthread_attr_t *restrict attr, void *(*start_routine)(void*), void *restrict arg);
701 pthread_detach  pthread.h               pthread_detach - detach a thread        int pthread_detach(pthread_t thread);
702 pthread_equal   pthread.h               pthread_equal - compare thread IDs      int pthread_equal(pthread_t t1, pthread_t t2);
703 pthread_exit    pthread.h               pthread_exit - thread termination       void pthread_exit(void *value_ptr);
704 pthread_getconcurrency  pthread.h       OB XSI  pthread_getconcurrency, pthread_setconcurrency - get and set the level of concurrency   int pthread_getconcurrency(void);
705 pthread_getcpuclockid   pthread.h time.h        TCT     pthread_getcpuclockid - access a thread CPU-time clock (<b>ADVANCED REALTIME THREADS</b>)       int pthread_getcpuclockid(pthread_t thread_id, clockid_t *clock_id);
706 pthread_getschedparam   pthread.h       TPS     pthread_getschedparam, pthread_setschedparam - dynamic thread scheduling parameters access (<b>REALTIME THREADS</b>)    int pthread_getschedparam(pthread_t thread, int *restrict policy, struct sched_param *restrict param);
707 pthread_getspecific     pthread.h               pthread_getspecific, pthread_setspecific - thread-specific data management      void *pthread_getspecific(pthread_key_t key);
708 pthread_join    pthread.h               pthread_join - wait for thread termination      int pthread_join(pthread_t thread, void **value_ptr);
709 pthread_key_create      pthread.h               pthread_key_create - thread-specific data key creation  int pthread_key_create(pthread_key_t *key, void (*destructor)(void*));
710 pthread_key_delete      pthread.h               pthread_key_delete - thread-specific data key deletion  int pthread_key_delete(pthread_key_t key);
711 pthread_kill    signal.h        CX      pthread_kill - send a signal to a thread        int pthread_kill(pthread_t thread, int sig);
712 pthread_mutex_consistent        pthread.h               pthread_mutex_consistent - mark state protected by robust mutex as consistent   int pthread_mutex_consistent(pthread_mutex_t *mutex);
713 pthread_mutex_destroy   pthread.h               pthread_mutex_destroy, pthread_mutex_init - destroy and initialize a mutex      int pthread_mutex_destroy(pthread_mutex_t *mutex);
714 pthread_mutex_getprioceiling    pthread.h       RPP     pthread_mutex_getprioceiling, pthread_mutex_setprioceiling - get and set the priority ceiling of a mutex (<b>REALTIME THREADS</b>)      int pthread_mutex_getprioceiling(const pthread_mutex_t *restrict mutex, int *restrict prioceiling);
715 pthread_mutex_init      pthread.h               pthread_mutex_destroy, pthread_mutex_init - destroy and initialize a mutex      int pthread_mutex_init(pthread_mutex_t *restrict mutex, const pthread_mutexattr_t *restrict attr);
716 pthread_mutex_lock      pthread.h               pthread_mutex_lock, pthread_mutex_trylock, pthread_mutex_unlock - lock and unlock a mutex       int pthread_mutex_lock(pthread_mutex_t *mutex);
717 pthread_mutex_setprioceiling    pthread.h       RPP     pthread_mutex_getprioceiling, pthread_mutex_setprioceiling - get and set the priority ceiling of a mutex (<b>REALTIME THREADS</b>)      int pthread_mutex_setprioceiling(pthread_mutex_t *restrict mutex, int prioceiling, int *restrict old_ceiling);
718 pthread_mutex_timedlock pthread.h time.h                pthread_mutex_timedlock - lock a mutex  int pthread_mutex_timedlock(pthread_mutex_t *restrict mutex, const struct timespec *restrict abstime);
719 pthread_mutex_trylock   pthread.h               pthread_mutex_lock, pthread_mutex_trylock, pthread_mutex_unlock - lock and unlock a mutex       int pthread_mutex_trylock(pthread_mutex_t *mutex);
720 pthread_mutex_unlock    pthread.h               pthread_mutex_lock, pthread_mutex_trylock, pthread_mutex_unlock - lock and unlock a mutex       int pthread_mutex_unlock(pthread_mutex_t *mutex);
721 pthread_mutexattr_destroy       pthread.h               pthread_mutexattr_destroy, pthread_mutexattr_init - destroy and initialize the mutex attributes object  int pthread_mutexattr_destroy(pthread_mutexattr_t *attr);
722 pthread_mutexattr_getprioceiling        pthread.h       RPP     pthread_mutexattr_getprioceiling, pthread_mutexattr_setprioceiling - get and set the prioceiling attribute of the mutex attributes object (<b>REALTIME THREADS</b>)     int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *restrict attr, int *restrict prioceiling);
723 pthread_mutexattr_getprotocol   pthread.h       MC1     pthread_mutexattr_getprotocol, pthread_mutexattr_setprotocol - get and set the protocol attribute of the mutex attributes object (<b>REALTIME THREADS</b>)      int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *restrict attr, int *restrict protocol);
724 pthread_mutexattr_getpshared    pthread.h       TSH     pthread_mutexattr_getpshared, pthread_mutexattr_setpshared - get and set the process-shared attribute   int pthread_mutexattr_getpshared(const pthread_mutexattr_t *restrict attr, int *restrict pshared);
725 pthread_mutexattr_getrobust     pthread.h               pthread_mutexattr_getrobust, pthread_mutexattr_setrobust - get and set the mutex robust attribute       int pthread_mutexattr_getrobust(const pthread_mutexattr_t *restrict attr, int *restrict robust);
726 pthread_mutexattr_gettype       pthread.h               pthread_mutexattr_gettype, pthread_mutexattr_settype - get and set the mutex type attribute     int pthread_mutexattr_gettype(const pthread_mutexattr_t *restrict attr, int *restrict type);
727 pthread_mutexattr_init  pthread.h               pthread_mutexattr_destroy, pthread_mutexattr_init - destroy and initialize the mutex attributes object  int pthread_mutexattr_init(pthread_mutexattr_t *attr);
728 pthread_mutexattr_setprioceiling        pthread.h       RPP     pthread_mutexattr_getprioceiling, pthread_mutexattr_setprioceiling - get and set the prioceiling attribute of the mutex attributes object (<b>REALTIME THREADS</b>)     int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr, int prioceiling);
729 pthread_mutexattr_setprotocol   pthread.h       MC1     pthread_mutexattr_getprotocol, pthread_mutexattr_setprotocol - get and set the protocol attribute of the mutex attributes object (<b>REALTIME THREADS</b>)      int pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, int protocol);
730 pthread_mutexattr_setpshared    pthread.h       TSH     pthread_mutexattr_getpshared, pthread_mutexattr_setpshared - get and set the process-shared attribute   int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared);
731 pthread_mutexattr_setrobust     pthread.h               pthread_mutexattr_getrobust, pthread_mutexattr_setrobust - get and set the mutex robust attribute       int pthread_mutexattr_setrobust(pthread_mutexattr_t *attr, int robust);
732 pthread_mutexattr_settype       pthread.h               pthread_mutexattr_gettype, pthread_mutexattr_settype - get and set the mutex type attribute     int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
733 pthread_once    pthread.h               pthread_once - dynamic package initialization   int pthread_once(pthread_once_t *once_control, void (*init_routine)(void));
734 pthread_rwlock_destroy  pthread.h               pthread_rwlock_destroy, pthread_rwlock_init - destroy and initialize a read-write lock object   int pthread_rwlock_destroy(pthread_rwlock_t *rwlock);
735 pthread_rwlock_init     pthread.h               pthread_rwlock_destroy, pthread_rwlock_init - destroy and initialize a read-write lock object   int pthread_rwlock_init(pthread_rwlock_t *restrict rwlock, const pthread_rwlockattr_t *restrict attr);
736 pthread_rwlock_rdlock   pthread.h               pthread_rwlock_rdlock, pthread_rwlock_tryrdlock - lock a read-write lock object for reading     int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);
737 pthread_rwlock_timedrdlock      pthread.h time.h                pthread_rwlock_timedrdlock - lock a read-write lock for reading int pthread_rwlock_timedrdlock(pthread_rwlock_t *restrict rwlock, const struct timespec *restrict abstime);
738 pthread_rwlock_timedwrlock      pthread.h time.h                pthread_rwlock_timedwrlock - lock a read-write lock for writing int pthread_rwlock_timedwrlock(pthread_rwlock_t *restrict rwlock, const struct timespec *restrict abstime);
739 pthread_rwlock_tryrdlock        pthread.h               pthread_rwlock_rdlock, pthread_rwlock_tryrdlock - lock a read-write lock object for reading     int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock);
740 pthread_rwlock_trywrlock        pthread.h               pthread_rwlock_trywrlock, pthread_rwlock_wrlock - lock a read-write lock object for writing     int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock);
741 pthread_rwlock_unlock   pthread.h               pthread_rwlock_unlock - unlock a read-write lock object int pthread_rwlock_unlock(pthread_rwlock_t *rwlock);
742 pthread_rwlock_wrlock   pthread.h               pthread_rwlock_trywrlock, pthread_rwlock_wrlock - lock a read-write lock object for writing     int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);
743 pthread_rwlockattr_destroy      pthread.h               pthread_rwlockattr_destroy, pthread_rwlockattr_init - destroy and initialize the read-write lock attributes object      int pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr);
744 pthread_rwlockattr_getpshared   pthread.h       TSH     pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared - get and set the process-shared attribute of the read-write lock attributes object        int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *restrict attr, int *restrict pshared);
745 pthread_rwlockattr_init pthread.h               pthread_rwlockattr_destroy, pthread_rwlockattr_init - destroy and initialize the read-write lock attributes object      int pthread_rwlockattr_init(pthread_rwlockattr_t *attr);
746 pthread_rwlockattr_setpshared   pthread.h       TSH     pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared - get and set the process-shared attribute of the read-write lock attributes object        int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *attr, int pshared);
747 pthread_self    pthread.h               pthread_self - get the calling thread ID        pthread_t pthread_self(void);
748 pthread_setcancelstate  pthread.h               pthread_setcancelstate, pthread_setcanceltype, pthread_testcancel - set cancelability state     int pthread_setcancelstate(int state, int *oldstate);
749 pthread_setcanceltype   pthread.h               pthread_setcancelstate, pthread_setcanceltype, pthread_testcancel - set cancelability state     int pthread_setcanceltype(int type, int *oldtype);
750 pthread_setconcurrency  pthread.h       OB XSI  pthread_getconcurrency, pthread_setconcurrency - get and set the level of concurrency   int pthread_setconcurrency(int new_level);
751 pthread_setschedparam   pthread.h       TPS     pthread_getschedparam, pthread_setschedparam - dynamic thread scheduling parameters access (<b>REALTIME THREADS</b>)    int pthread_setschedparam(pthread_t thread, int policy, const struct sched_param *param);
752 pthread_setschedprio    pthread.h       TPS     pthread_setschedprio - dynamic thread scheduling parameters access (<b>REALTIME THREADS</b>)    int pthread_setschedprio(pthread_t thread, int prio);
753 pthread_setspecific     pthread.h               pthread_getspecific, pthread_setspecific - thread-specific data management      int pthread_setspecific(pthread_key_t key, const void *value);
754 pthread_sigmask signal.h        CX      pthread_sigmask, sigprocmask - examine and change blocked signals       int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict oset);
755 pthread_spin_destroy    pthread.h               pthread_spin_destroy, pthread_spin_init - destroy or initialize a spin lock object      int pthread_spin_destroy(pthread_spinlock_t *lock);
756 pthread_spin_init       pthread.h               pthread_spin_destroy, pthread_spin_init - destroy or initialize a spin lock object      int pthread_spin_init(pthread_spinlock_t *lock, int pshared);
757 pthread_spin_lock       pthread.h               pthread_spin_lock, pthread_spin_trylock - lock a spin lock object       int pthread_spin_lock(pthread_spinlock_t *lock);
758 pthread_spin_trylock    pthread.h               pthread_spin_lock, pthread_spin_trylock - lock a spin lock object       int pthread_spin_trylock(pthread_spinlock_t *lock);
759 pthread_spin_unlock     pthread.h               pthread_spin_unlock - unlock a spin lock object int pthread_spin_unlock(pthread_spinlock_t *lock);
760 pthread_testcancel      pthread.h               pthread_setcancelstate, pthread_setcanceltype, pthread_testcancel - set cancelability state     void pthread_testcancel(void);
761 ptsname stdlib.h        XSI     ptsname - get name of the slave pseudo-terminal device  char *ptsname(int fildes);
762 putc    stdio.h         putc - put a byte on a stream   int putc(int c, FILE *stream);
763 putc_unlocked   stdio.h CX      getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking   int putc_unlocked(int c, FILE *stream);
764 putchar stdio.h         putchar - put a byte on a stdout stream int putchar(int c);
765 putchar_unlocked        stdio.h CX      getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking   int putchar_unlocked(int c);
766 putenv  stdlib.h        XSI     putenv - change or add a value to an environment        int putenv(char *string);
767 puts    stdio.h         puts - put a string on standard output  int puts(const char *s);
768 pututxline      utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  struct utmpx *pututxline(const struct utmpx *utmpx);
769 putwc   stdio.h wchar.h         putwc - put a wide character on a stream        wint_t putwc(wchar_t wc, FILE *stream);
770 putwchar        wchar.h         putwchar - put a wide character on a stdout stream      wint_t putwchar(wchar_t wc);
771 pwrite  unistd.h                pwrite, write - write on a file ssize_t pwrite(int fildes, const void *buf, size_t nbyte, off_t offset);
772 qsort   stdlib.h                qsort - sort a table of data    void qsort(void *base, size_t nel, size_t width, int (*compar)(const void *, const void *));
773 raise   signal.h                raise - send a signal to the executing process  int raise(int sig);
774 rand    stdlib.h                rand, rand_r, srand - pseudo-random number generator    int rand(void);
775 rand_r  stdlib.h        OB CX   rand, rand_r, srand - pseudo-random number generator    int rand_r(unsigned *seed);
776 random  stdlib.h        XSI     initstate, random, setstate, srandom - pseudo-random number functions   long random(void);
777 read    unistd.h                pread, read - read from a file  ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
778 readdir dirent.h                readdir, readdir_r - read a directory   struct dirent *readdir(DIR *dirp);
779 readdir_r       dirent.h                readdir, readdir_r - read a directory   int readdir_r(DIR *restrict dirp, struct dirent *restrict entry, struct dirent **restrict result);
780 readlink        unistd.h                readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor     ssize_t readlink(const char *restrict path, char *restrict buf, size_t bufsize);
781 readlinkat      unistd.h                readlink, readlinkat - read the contents of a symbolic link relative to a directory file descriptor     ssize_t readlinkat(int fd, const char *restrict path, char *restrict buf, size_t bufsize);
782 readv   sys_uio.h       XSI     readv - read a vector   ssize_t readv(int fildes, const struct iovec *iov, int iovcnt);
783 realloc stdlib.h                realloc - memory reallocator    void *realloc(void *ptr, size_t size);
784 realpath        stdlib.h        XSI     realpath - resolve a pathname   char *realpath(const char *restrict file_name, char *restrict resolved_name);
785 recv    sys_socket.h            recv - receive a message from a connected socket        ssize_t recv(int socket, void *buffer, size_t length, int flags);
786 recvfrom        sys_socket.h            recvfrom - receive a message from a socket      ssize_t recvfrom(int socket, void *restrict buffer, size_t length, int flags, struct sockaddr *restrict address, socklen_t *restrict address_len);
787 recvmsg sys_socket.h            recvmsg - receive a message from a socket       ssize_t recvmsg(int socket, struct msghdr *message, int flags);
788 regcomp regex.h         regcomp, regerror, regexec, regfree - regular expression matching       int regcomp(regex_t *restrict preg, const char *restrict pattern, int cflags);
789 regerror        regex.h         regcomp, regerror, regexec, regfree - regular expression matching       size_t regerror(int errcode, const regex_t *restrict preg, char *restrict errbuf, size_t errbuf_size);
790 regexec regex.h         regcomp, regerror, regexec, regfree - regular expression matching       int regexec(const regex_t *restrict preg, const char *restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags);
791 regfree regex.h         regcomp, regerror, regexec, regfree - regular expression matching       void regfree(regex_t *preg);
792 remainder       math.h          remainder, remainderf, remainderl - remainder function  double remainder(double x, double y);
793 remainderf      math.h          remainder, remainderf, remainderl - remainder function  float remainderf(float x, float y);
794 remainderl      math.h          remainder, remainderf, remainderl - remainder function  long double remainderl(long double x, long double y);
795 remove  stdio.h         remove - remove a file  int remove(const char *path);
796 remque  search.h        XSI     insque, remque - insert or remove an element in a queue void remque(void *element);
797 remquo  math.h          remquo, remquof, remquol - remainder functions  double remquo(double x, double y, int *quo);
798 remquof math.h          remquo, remquof, remquol - remainder functions  float remquof(float x, float y, int *quo);
799 remquol math.h          remquo, remquof, remquol - remainder functions  long double remquol(long double x, long double y, int *quo);
800 rename  stdio.h CX      rename, renameat - rename file relative to directory file descriptor    int rename(const char *old, const char *new);
801 renameat        stdio.h CX      rename, renameat - rename file relative to directory file descriptor    int renameat(int oldfd, const char *old, int newfd, const char *new);
802 rewind  stdio.h         rewind - reset the file position indicator in a stream  void rewind(FILE *stream);
803 rewinddir       dirent.h                rewinddir - reset the position of a directory stream to the beginning of a directory    void rewinddir(DIR *dirp);
804 rint    math.h          rint, rintf, rintl - round-to-nearest integral value    double rint(double x);
805 rintf   math.h          rint, rintf, rintl - round-to-nearest integral value    float rintf(float x);
806 rintl   math.h          rint, rintf, rintl - round-to-nearest integral value    long double rintl(long double x);
807 rmdir   unistd.h                rmdir - remove a directory      int rmdir(const char *path);
808 round   math.h          round, roundf, roundl - round to the nearest integer value in a floating-point format   double round(double x);
809 roundf  math.h          round, roundf, roundl - round to the nearest integer value in a floating-point format   float roundf(float x);
810 roundl  math.h          round, roundf, roundl - round to the nearest integer value in a floating-point format   long double roundl(long double x);
811 scalbln math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        double scalbln(double x, long n);
812 scalblnf        math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        float scalblnf(float x, long n);
813 scalblnl        math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        long double scalblnl(long double x, long n);
814 scalbn  math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        double scalbn(double x, int n);
815 scalbnf math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        float scalbnf(float x, int n);
816 scalbnl math.h          scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - compute exponent using FLT_RADIX        long double scalbnl(long double x, int n);
817 scandir dirent.h                alphasort, scandir - scan a directory   int scandir(const char *dir, struct dirent ***namelist, int (*sel)(const struct dirent *), int (*compar)(const struct dirent **, const struct dirent **));
818 scanf   stdio.h         fscanf, scanf, sscanf - convert formatted input int fscanf(FILE *restrict stream, const char *restrict format, ...);
819 sched_get_priority_max  sched.h PS      sched_get_priority_max, sched_get_priority_min - get priority limits (<b>REALTIME</b>)  int sched_get_priority_max(int policy);
820 sched_get_priority_min  sched.h PS      sched_get_priority_max, sched_get_priority_min - get priority limits (<b>REALTIME</b>)  int sched_get_priority_min(int policy);
821 sched_getparam  sched.h PS      sched_getparam - get scheduling parameters (<b>REALTIME</b>)    int sched_getparam(pid_t pid, struct sched_param *param);
822 sched_getscheduler      sched.h PS      sched_getscheduler - get scheduling policy (<b>REALTIME</b>)    int sched_getscheduler(pid_t pid);
823 sched_rr_get_interval   sched.h PS      sched_rr_get_interval - get execution time limits (<b>REALTIME</b>)     int sched_rr_get_interval(pid_t pid, struct timespec *interval);
824 sched_setparam  sched.h PS      sched_setparam - set scheduling parameters (<b>REALTIME</b>)    int sched_setparam(pid_t pid, const struct sched_param *param);
825 sched_setscheduler      sched.h PS      sched_setscheduler - set scheduling policy and parameters (<b>REALTIME</b>)     int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param);
826 sched_yield     sched.h         sched_yield - yield the processor       int sched_yield(void);
827 seed48  stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   unsigned short *seed48(unsigned short seed16v[3]);
828 seekdir dirent.h        XSI     seekdir - set the position of a directory stream        void seekdir(DIR *dirp, long loc);
829 select  sys_select.h            pselect, select - synchronous I/O multiplexing  int pselect(int nfds, fd_set *restrict readfds, fd_set *restrict writefds, fd_set *restrict errorfds, const struct timespec *restrict timeout, const sigset_t *restrict sigmask);
830 sem_close       semaphore.h             sem_close - close a named semaphore     int sem_close(sem_t *sem);
831 sem_destroy     semaphore.h             sem_destroy - destroy an unnamed semaphore      int sem_destroy(sem_t *sem);
832 sem_getvalue    semaphore.h             sem_getvalue - get the value of a semaphore     int sem_getvalue(sem_t *restrict sem, int *restrict sval);
833 sem_init        semaphore.h             sem_init - initialize an unnamed semaphore      int sem_init(sem_t *sem, int pshared, unsigned value);
834 sem_open        semaphore.h             sem_open - initialize and open a named semaphore        sem_t *sem_open(const char *name, int oflag, ...);
835 sem_post        semaphore.h             sem_post - unlock a semaphore   int sem_post(sem_t *sem);
836 sem_timedwait   semaphore.h time.h              sem_timedwait - lock a semaphore        int sem_timedwait(sem_t *restrict sem, const struct timespec *restrict abstime);
837 sem_trywait     semaphore.h             sem_trywait, sem_wait - lock a semaphore        int sem_trywait(sem_t *sem);
838 sem_unlink      semaphore.h             sem_unlink - remove a named semaphore   int sem_unlink(const char *name);
839 sem_wait        semaphore.h             sem_trywait, sem_wait - lock a semaphore        int sem_wait(sem_t *sem);
840 semctl  sys/sem.h       XSI     semctl - XSI semaphore control operations       int semctl(int semid, int semnum, int cmd, ...);
841 semget  sys_sem.h       XSI     semget - get set of XSI semaphores      int semget(key_t key, int nsems, int semflg);
842 semop   sys_sem.h       XSI     semop - XSI semaphore operations        int semop(int semid, struct sembuf *sops, size_t nsops);
843 send    sys_socket.h            send - send a message on a socket       ssize_t send(int socket, const void *buffer, size_t length, int flags);
844 sendmsg sys_socket.h            sendmsg - send a message on a socket using a message structure  ssize_t sendmsg(int socket, const struct msghdr *message, int flags);
845 sendto  sys_socket.h            sendto - send a message on a socket     ssize_t sendto(int socket, const void *message, size_t length, int flags, const struct sockaddr *dest_addr, socklen_t dest_len);
846 setbuf  stdio.h         setbuf - assign buffering to a stream   void setbuf(FILE *restrict stream, char *restrict buf);
847 setegid unistd.h                setegid - set the effective group ID    int setegid(gid_t gid);
848 setenv  stdlib.h        CX      setenv - add or change environment variable     int setenv(const char *envname, const char *envval, int overwrite);
849 seteuid unistd.h                seteuid - set effective user ID int seteuid(uid_t uid);
850 setgid  unistd.h                setgid - set-group-ID   int setgid(gid_t gid);
851 setgrent        grp.h   XSI     endgrent, getgrent, setgrent - group database entry functions   void setgrent(void);
852 sethostent      netdb.h         endhostent, gethostent, sethostent - network host database functions    void sethostent(int stayopen);
853 setitimer       sys_time.h      OB XSI  getitimer, setitimer - get and set value of interval timer      int setitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue);
854 setjmp  setjmp.h                setjmp - set jump point for a non-local goto    int setjmp(jmp_buf env);
855 setkey  stdlib.h        XSI     setkey - set encoding key (<b>CRYPT</b>)        void setkey(const char *key);
856 setlocale       locale.h                setlocale - set program locale  char *setlocale(int category, const char *locale);
857 setlogmask      syslog.h        XSI     closelog, openlog, setlogmask, syslog - control system log      int setlogmask(int maskpri);
858 setnetent       netdb.h         endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions        void setnetent(int stayopen);
859 setpgid unistd.h                setpgid - set process group ID for job control  int setpgid(pid_t pid, pid_t pgid);
860 setpgrp unistd.h        OB XSI  setpgrp - set the process group ID      pid_t setpgrp(void);
861 setpriority     sys_resource.h  XSI     getpriority, setpriority - get and set the nice value   int setpriority(int which, id_t who, int value);
862 setprotoent     netdb.h         endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions   void setprotoent(int stayopen);
863 setpwent        pwd.h   XSI     endpwent, getpwent, setpwent - user database functions  void setpwent(void);
864 setregid        unistd.h        XSI     setregid - set real and effective group IDs     int setregid(gid_t rgid, gid_t egid);
865 setreuid        unistd.h        XSI     setreuid - set real and effective user IDs      int setreuid(uid_t ruid, uid_t euid);
866 setrlimit       sys_resource.h  XSI     getrlimit, setrlimit - control maximum resource consumption     int setrlimit(int resource, const struct rlimit *rlp);
867 setservent      netdb.h         endservent, getservbyname, getservbyport, getservent, setservent - network services database functions  void setservent(int stayopen);
868 setsid  unistd.h                setsid - create session and set process group ID        pid_t setsid(void);
869 setsockopt      sys_socket.h            setsockopt - set the socket options     int setsockopt(int socket, int level, int option_name, const void *option_value, socklen_t option_len);
870 setstate        stdlib.h        XSI     initstate, random, setstate, srandom - pseudo-random number functions   char *setstate(char *state);
871 setuid  unistd.h                setuid - set user ID    int setuid(uid_t uid);
872 setutxent       utmpx.h XSI     endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions  void setutxent(void);
873 setvbuf stdio.h         setvbuf - assign buffering to a stream  int setvbuf(FILE *restrict stream, char *restrict buf, int type, size_t size);
874 shm_open        sys_mman.h      SHM     shm_open - open a shared memory object (<b>REALTIME</b>)        int shm_open(const char *name, int oflag, mode_t mode);
875 shm_unlink      sys_mman.h      SHM     shm_unlink - remove a shared memory object (<b>REALTIME</b>)    int shm_unlink(const char *name);
876 shmat   sys_shm.h       XSI     shmat - XSI shared memory attach operation      void *shmat(int shmid, const void *shmaddr, int shmflg);
877 shmctl  sys_shm.h       XSI     shmctl - XSI shared memory control operations   int shmctl(int shmid, int cmd, struct shmid_ds *buf);
878 shmdt   sys_shm.h       XSI     shmdt - XSI shared memory detach operation      int shmdt(const void *shmaddr);
879 shmget  sys_shm.h       XSI     shmget - get an XSI shared memory segment       int shmget(key_t key, size_t size, int shmflg);
880 shutdown        sys_socket.h            shutdown - shut down socket send and receive operations int shutdown(int socket, int how);
881 sigaction       signal.h        CX      sigaction - examine and change a signal action  int sigaction(int sig, const struct sigaction *restrict act, struct sigaction *restrict oact);
882 sigaddset       signal.h        CX      sigaddset - add a signal to a signal set        int sigaddset(sigset_t *set, int signo);
883 sigaltstack     signal.h        XSI     sigaltstack - set and get signal alternate stack context        int sigaltstack(const stack_t *restrict ss, stack_t *restrict oss);
884 sigdelset       signal.h        CX      sigdelset - delete a signal from a signal set   int sigdelset(sigset_t *set, int signo);
885 sigemptyset     signal.h        CX      sigemptyset - initialize and empty a signal set int sigemptyset(sigset_t *set);
886 sigfillset      signal.h        CX      sigfillset - initialize and fill a signal set   int sigfillset(sigset_t *set);
887 sighold signal.h        OB XSI  sighold, sigignore, sigpause, sigrelse, sigset - signal management      int sighold(int sig);
888 sigignore       signal.h        OB XSI  sighold, sigignore, sigpause, sigrelse, sigset - signal management      int sigignore(int sig);
889 siginterrupt    signal.h        OB XSI  siginterrupt - allow signals to interrupt functions     int siginterrupt(int sig, int flag);
890 sigismember     signal.h        CX      sigismember - test for a signal in a signal set int sigismember(const sigset_t *set, int signo);
891 siglongjmp      setjmp.h        CX      siglongjmp - non-local goto with signal handling        void siglongjmp(sigjmp_buf env, int val);
892 signal  signal.h                signal - signal management      void (*signal(int sig, void (*func)(int)))(int);
893 signbit math.h          signbit - test sign     int signbit(real-floating x);
894 signgam math.h  XSI     lgamma, lgammaf, lgammal, signgam - log gamma function  
895 sigpause        signal.h        OB XSI  sighold, sigignore, sigpause, sigrelse, sigset - signal management      int sigpause(int sig);
896 sigpending      signal.h        CX      sigpending - examine pending signals    int sigpending(sigset_t *set);
897 sigprocmask     signal.h        CX      pthread_sigmask, sigprocmask - examine and change blocked signals       int sigprocmask(int how, const sigset_t *restrict set, sigset_t *restrict oset);
898 sigqueue        signal.h        CX      sigqueue - queue a signal to a process  int sigqueue(pid_t pid, int signo, const union sigval value);
899 sigrelse        signal.h        OB XSI  sighold, sigignore, sigpause, sigrelse, sigset - signal management      int sigrelse(int sig);
900 sigset  signal.h        OB XSI  sighold, sigignore, sigpause, sigrelse, sigset - signal management      void (*sigset(int sig, void (*disp)(int)))(int);
901 sigsetjmp       setjmp.h        CX      sigsetjmp - set jump point for a non-local goto int sigsetjmp(sigjmp_buf env, int savemask);
902 sigsuspend      signal.h        CX      sigsuspend - wait for a signal  int sigsuspend(const sigset_t *sigmask);
903 sigtimedwait    signal.h        CX      sigtimedwait, sigwaitinfo - wait for queued signals     int sigtimedwait(const sigset_t *restrict set, siginfo_t *restrict info, const struct timespec *restrict timeout);
904 sigwait signal.h        CX      sigwait - wait for queued signals       int sigwait(const sigset_t *restrict set, int *restrict sig);
905 sigwaitinfo     signal.h        CX      sigtimedwait, sigwaitinfo - wait for queued signals     int sigwaitinfo(const sigset_t *restrict set, siginfo_t *restrict info);
906 sin     math.h          sin, sinf, sinl - sine function double sin(double x);
907 sinf    math.h          sin, sinf, sinl - sine function float sinf(float x);
908 sinh    math.h          sinh, sinhf, sinhl - hyperbolic sine functions  double sinh(double x);
909 sinhf   math.h          sinh, sinhf, sinhl - hyperbolic sine functions  float sinhf(float x);
910 sinhl   math.h          sinh, sinhf, sinhl - hyperbolic sine functions  long double sinhl(long double x);
911 sinl    math.h          sin, sinf, sinl - sine function long double sinl(long double x);
912 sleep   unistd.h                sleep - suspend execution for an interval of time       unsigned sleep(unsigned seconds);
913 snprintf        stdio.h         dprintf, fprintf, printf, snprintf, sprintf - print formatted output    int snprintf(char *restrict s, size_t n, const char *restrict format, ...);
914 sockatmark      sys_socket.h            sockatmark - determine whether a socket is at the out-of-band mark      int sockatmark(int s);
915 socket  sys_socket.h            socket - create an endpoint for communication   int socket(int domain, int type, int protocol);
916 socketpair      sys_socket.h            socketpair - create a pair of connected sockets int socketpair(int domain, int type, int protocol, int socket_vector[2]);
917 sprintf stdio.h         dprintf, fprintf, printf, snprintf, sprintf - print formatted output    int sprintf(char *restrict s, const char *restrict format, ...);
918 sqrt    math.h          sqrt, sqrtf, sqrtl - square root function       double sqrt(double x);
919 sqrtf   math.h          sqrt, sqrtf, sqrtl - square root function       float sqrtf(float x);
920 sqrtl   math.h          sqrt, sqrtf, sqrtl - square root function       long double sqrtl(long double x);
921 srand   stdlib.h                rand, rand_r, srand - pseudo-random number generator    void srand(unsigned seed);
922 srand48 stdlib.h        XSI     drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers   void srand48(long seedval);
923 srandom stdlib.h        XSI     initstate, random, setstate, srandom - pseudo-random number functions   void srandom(unsigned seed);
924 sscanf  stdio.h         fscanf, scanf, sscanf - convert formatted input int sscanf(const char *restrict s, const char *restrict format, ...);
925 stat    sys_stat.h              fstatat, lstat, stat - get file status  int lstat(const char *restrict path, struct stat *restrict buf);
926 statvfs sys_statvfs.h           fstatvfs, statvfs - get file system information int fstatvfs(int fildes, struct statvfs *buf);
927 stderr  stdio.h         stderr, stdin, stdout - standard I/O streams    
928 stdin   stdio.h         stderr, stdin, stdout - standard I/O streams    
929 stdout  stdio.h         stderr, stdin, stdout - standard I/O streams    
930 stpcpy  string.h        CX      stpcpy, strcpy - copy a string and return a pointer to the end of the result    char *stpcpy(char *restrict s1, const char *restrict s2);
931 stpncpy string.h        CX      stpncpy, strncpy - copy fixed length string, returning a pointer to the array end       char *stpncpy(char *restrict s1, const char *restrict s2, size_t n);
932 strcasecmp      strings.h               strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons      int strcasecmp(const char *s1, const char *s2);
933 strcasecmp_l    strings.h               strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons      int strcasecmp_l(const char *s1, const char *s2, locale_t locale);
934 strcat  string.h                strcat - concatenate two strings        char *strcat(char *restrict s1, const char *restrict s2);
935 strchr  string.h                strchr - string scanning operation      char *strchr(const char *s, int c);
936 strcmp  string.h                strcmp - compare two strings    int strcmp(const char *s1, const char *s2);
937 strcoll string.h                strcoll, strcoll_l - string comparison using collating information      int strcoll(const char *s1, const char *s2);
938 strcoll_l       string.h        CX      strcoll, strcoll_l - string comparison using collating information      int strcoll_l(const char *s1, const char *s2, locale_t locale);
939 strcpy  string.h                stpcpy, strcpy - copy a string and return a pointer to the end of the result    char *strcpy(char *restrict s1, const char *restrict s2);
940 strcspn string.h                strcspn - get the length of a complementary substring   size_t strcspn(const char *s1, const char *s2);
941 strdup  string.h        CX      strdup, strndup - duplicate a specific number of bytes from a string    char *strdup(const char *s);
942 strerror        string.h                strerror, strerror_l, strerror_r - get error message string     char *strerror(int errnum);
943 strerror_l      string.h        CX      strerror, strerror_l, strerror_r - get error message string     char *strerror_l(int errnum, locale_t locale);
944 strerror_r      string.h        CX      strerror, strerror_l, strerror_r - get error message string     int strerror_r(int errnum, char *strerrbuf, size_t buflen);
945 strfmon monetary.h              strfmon, strfmon_l - convert monetary value to a string ssize_t strfmon(char *restrict s, size_t maxsize, const char *restrict format, ...);
946 strfmon_l       monetary.h              strfmon, strfmon_l - convert monetary value to a string ssize_t strfmon_l(char *restrict s, size_t maxsize, locale_t locale, const char *restrict format, ...);
947 strftime        time.h          strftime, strftime_l - convert date and time to a string        size_t strftime(char *restrict s, size_t maxsize, const char *restrict format, const struct tm *restrict timeptr);
948 strftime_l      time.h  CX      strftime, strftime_l - convert date and time to a string        size_t strftime_l(char *restrict s, size_t maxsize, const char *restrict format, const struct tm *restrict timeptr, locale_t locale);
949 strlen  string.h                strlen, strnlen - get length of fixed size string       size_t strlen(const char *s);
950 strncasecmp     strings.h               strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons      int strncasecmp(const char *s1, const char *s2, size_t n);
951 strncasecmp_l   strings.h               strcasecmp, strcasecmp_l, strncasecmp, strncasecmp_l - case-insensitive string comparisons      int strncasecmp_l(const char *s1, const char *s2, size_t n, locale_t locale);
952 strncat string.h                strncat - concatenate a string with part of another     char *strncat(char *restrict s1, const char *restrict s2, size_t n);
953 strncmp string.h                strncmp - compare part of two strings   int strncmp(const char *s1, const char *s2, size_t n);
954 strncpy string.h                stpncpy, strncpy - copy fixed length string, returning a pointer to the array end       char *strncpy(char *restrict s1, const char *restrict s2, size_t n);
955 strndup string.h        CX      strdup, strndup - duplicate a specific number of bytes from a string    char *strndup(const char *s, size_t size);
956 strnlen string.h        CX      strlen, strnlen - get length of fixed size string       size_t strnlen(const char *s, size_t maxlen);
957 strpbrk string.h                strpbrk - scan a string for a byte      char *strpbrk(const char *s1, const char *s2);
958 strptime        time.h  XSI     strptime - date and time conversion     char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm);
959 strrchr string.h                strrchr - string scanning operation     char *strrchr(const char *s, int c);
960 strsignal       string.h        CX      strsignal - get name of signal  char *strsignal(int signum);
961 strspn  string.h                strspn - get length of a substring      size_t strspn(const char *s1, const char *s2);
962 strstr  string.h                strstr - find a substring       char *strstr(const char *s1, const char *s2);
963 strtod  stdlib.h                strtod, strtof, strtold - convert a string to a double-precision number double strtod(const char *restrict nptr, char **restrict endptr);
964 strtof  stdlib.h                strtod, strtof, strtold - convert a string to a double-precision number float strtof(const char *restrict nptr, char **restrict endptr);
965 strtoimax       inttypes.h              strtoimax, strtoumax - convert string to integer type   intmax_t strtoimax(const char *restrict nptr, char **restrict endptr, int base);
966 strtok  string.h                strtok, strtok_r - split string into tokens     char *strtok(char *restrict s1, const char *restrict s2);
967 strtok_r        string.h        CX      strtok, strtok_r - split string into tokens     char *strtok_r(char *restrict s, const char *restrict sep, char **restrict lasts);
968 strtol  stdlib.h                strtol, strtoll - convert a string to a long integer    long strtol(const char *restrict str, char **restrict endptr, int base);
969 strtold stdlib.h                strtod, strtof, strtold - convert a string to a double-precision number long double strtold(const char *restrict nptr, char **restrict endptr);
970 strtoll stdlib.h                strtol, strtoll - convert a string to a long integer    long long strtoll(const char *restrict str, char **restrict endptr, int base);
971 strtoul stdlib.h                strtoul, strtoull - convert a string to an unsigned long        unsigned long strtoul(const char *restrict str, char **restrict endptr, int base);
972 strtoull        stdlib.h                strtoul, strtoull - convert a string to an unsigned long        unsigned long long strtoull(const char *restrict str, char **restrict endptr, int base);
973 strtoumax       inttypes.h              strtoimax, strtoumax - convert string to integer type   uintmax_t strtoumax(const char *restrict nptr, char **restrict endptr, int base);
974 strxfrm string.h                strxfrm, strxfrm_l - string transformation      size_t strxfrm(char *restrict s1, const char *restrict s2, size_t n);
975 strxfrm_l       string.h        CX      strxfrm, strxfrm_l - string transformation      size_t strxfrm_l(char *restrict s1, const char *restrict s2, size_t n, locale_t locale);
976 swab    unistd.h        XSI     swab - swap bytes       void swab(const void *restrict src, void *restrict dest, ssize_t nbytes);
977 swprintf        stdio.h wchar.h         fwprintf, swprintf, wprintf - print formatted wide-character output     int swprintf(wchar_t *restrict ws, size_t n, const wchar_t *restrict format, ...);
978 swscanf stdio.h wchar.h         fwscanf, swscanf, wscanf - convert formatted wide-character input       int swscanf(const wchar_t *restrict ws, const wchar_t *restrict format, ...);
979 symlink unistd.h                symlink, symlinkat - make a symbolic link relative to directory file descriptor int symlink(const char *path1, const char *path2);
980 symlinkat       unistd.h                symlink, symlinkat - make a symbolic link relative to directory file descriptor int symlinkat(const char *path1, int fd, const char *path2);
981 sync    unistd.h        XSI     sync - schedule file system updates     void sync(void);
982 sysconf unistd.h                sysconf - get configurable system variables     long sysconf(int name);
983 syslog  syslog.h        XSI     closelog, openlog, setlogmask, syslog - control system log      void syslog(int priority, const char *message, ... /* arguments */);
984 system  stdlib.h                system - issue a command        int system(const char *command);
985 tan     math.h          tan, tanf, tanl - tangent function      double tan(double x);
986 tanf    math.h          tan, tanf, tanl - tangent function      float tanf(float x);
987 tanh    math.h          tanh, tanhf, tanhl - hyperbolic tangent functions       double tanh(double x);
988 tanhf   math.h          tanh, tanhf, tanhl - hyperbolic tangent functions       float tanhf(float x);
989 tanhl   math.h          tanh, tanhf, tanhl - hyperbolic tangent functions       long double tanhl(long double x);
990 tanl    math.h          tan, tanf, tanl - tangent function      long double tanl(long double x);
991 tcdrain termios.h               tcdrain - wait for transmission of output       int tcdrain(int fildes);
992 tcflow  termios.h               tcflow - suspend or restart the transmission or reception of data       int tcflow(int fildes, int action);
993 tcflush termios.h               tcflush - flush non-transmitted output data, non-read input data, or both       int tcflush(int fildes, int queue_selector);
994 tcgetattr       termios.h               tcgetattr - get the parameters associated with the terminal     int tcgetattr(int fildes, struct termios *termios_p);
995 tcgetpgrp       unistd.h                tcgetpgrp - get the foreground process group ID pid_t tcgetpgrp(int fildes);
996 tcgetsid        termios.h               tcgetsid - get the process group ID for the session leader for the controlling terminal pid_t tcgetsid(int fildes);
997 tcsendbreak     termios.h               tcsendbreak - send a break for a specific duration      int tcsendbreak(int fildes, int duration);
998 tcsetattr       termios.h               tcsetattr - set the parameters associated with the terminal     int tcsetattr(int fildes, int optional_actions, const struct termios *termios_p);
999 tcsetpgrp       unistd.h                tcsetpgrp - set the foreground process group ID int tcsetpgrp(int fildes, pid_t pgid_id);
1000 tdelete search.h        XSI     tdelete, tfind, tsearch, twalk - manage a binary search tree    void *tdelete(const void *restrict key, void **restrict rootp, int(*compar)(const void *, const void *));
1001 telldir dirent.h        XSI     telldir - current location of a named directory stream  long telldir(DIR *dirp);
1002 tempnam stdio.h OB XSI  tempnam - create a name for a temporary file    char *tempnam(const char *dir, const char *pfx);
1003 tfind   search.h        XSI     tdelete, tfind, tsearch, twalk - manage a binary search tree    void *tfind(const void *key, void *const *rootp, int(*compar)(const void *, const void *));
1004 tgamma  math.h          tgamma, tgammaf, tgammal - compute gamma() function     double tgamma(double x);
1005 tgammaf math.h          tgamma, tgammaf, tgammal - compute gamma() function     float tgammaf(float x);
1006 tgammal math.h          tgamma, tgammaf, tgammal - compute gamma() function     long double tgammal(long double x);
1007 time    time.h          time - get time time_t time(time_t *tloc);
1008 timer_create    signal.h time.h CX      timer_create - create a per-process timer       int timer_create(clockid_t clockid, struct sigevent *restrict evp, timer_t *restrict timerid);
1009 timer_delete    time.h  CX      timer_delete - delete a per-process timer       int timer_delete(timer_t timerid);
1010 timer_getoverrun        time.h  CX      timer_getoverrun, timer_gettime, timer_settime - per-process timers     int timer_getoverrun(timer_t timerid);
1011 timer_gettime   time.h  CX      timer_getoverrun, timer_gettime, timer_settime - per-process timers     int timer_gettime(timer_t timerid, struct itimerspec *value);
1012 timer_settime   time.h  CX      timer_getoverrun, timer_gettime, timer_settime - per-process timers     int timer_settime(timer_t timerid, int flags, const struct itimerspec *restrict value, struct itimerspec *restrict ovalue);
1013 times   sys_times.h             times - get process and waited-for child process times  clock_t times(struct tms *buffer);
1014 timezone        time.h  XSI     daylight, timezone, tzname, tzset - set timezone conversion information 
1015 tmpfile stdio.h         tmpfile - create a temporary file       FILE *tmpfile(void);
1016 tmpnam  stdio.h OB      tmpnam - create a name for a temporary file     char *tmpnam(char *s);
1017 toascii ctype.h OB XSI  toascii - translate an integer to a 7-bit ASCII character       int toascii(int c);
1018 tolower ctype.h         tolower, tolower_l - transliterate uppercase characters to lowercase    int tolower(int c);
1019 tolower_l       ctype.h CX      tolower, tolower_l - transliterate uppercase characters to lowercase    int tolower_l(int c, locale_t locale);
1020 toupper ctype.h         toupper, toupper_l - transliterate lowercase characters to uppercase    int toupper(int c);
1021 toupper_l       ctype.h CX      toupper, toupper_l - transliterate lowercase characters to uppercase    int toupper_l(int c, locale_t locale);
1022 towctrans       wctype.h                towctrans, towctrans_l - wide-character transliteration wint_t towctrans(wint_t wc, wctrans_t desc);
1023 towctrans_l     wctype.h        CX      towctrans, towctrans_l - wide-character transliteration wint_t towctrans_l(wint_t wc, wctrans_t desc, locale_t locale);
1024 towlower        wctype.h                towlower, towlower_l - transliterate uppercase wide-character code to lowercase wint_t towlower(wint_t wc);
1025 towlower_l      wctype.h        CX      towlower, towlower_l - transliterate uppercase wide-character code to lowercase wint_t towlower_l(wint_t wc, locale_t locale);
1026 towupper        wctype.h                towupper, towupper_l - transliterate lowercase wide-character code to uppercase wint_t towupper(wint_t wc);
1027 towupper_l      wctype.h        CX      towupper, towupper_l - transliterate lowercase wide-character code to uppercase wint_t towupper_l(wint_t wc, locale_t locale);
1028 trunc   math.h          trunc, truncf, truncl - round to truncated integer value        double trunc(double x);
1029 truncate        unistd.h                truncate - truncate a file to a specified length        int truncate(const char *path, off_t length);
1030 truncf  math.h          trunc, truncf, truncl - round to truncated integer value        float truncf(float x);
1031 truncl  math.h          trunc, truncf, truncl - round to truncated integer value        long double truncl(long double x);
1032 tsearch search.h        XSI     tdelete, tfind, tsearch, twalk - manage a binary search tree    void *tsearch(const void *key, void **rootp, int (*compar)(const void *, const void *));
1033 ttyname unistd.h                ttyname, ttyname_r - find the pathname of a terminal    char *ttyname(int fildes);
1034 ttyname_r       unistd.h                ttyname, ttyname_r - find the pathname of a terminal    int ttyname_r(int fildes, char *name, size_t namesize);
1035 twalk   search.h        XSI     tdelete, tfind, tsearch, twalk - manage a binary search tree    void twalk(const void *root, void (*action)(const void *, VISIT, int));
1036 tzname  time.h  CX      daylight, timezone, tzname, tzset - set timezone conversion information 
1037 tzset   time.h  CX      daylight, timezone, tzname, tzset - set timezone conversion information void tzset(void);
1038 ulimit  ulimit.h        OB XSI  ulimit - get and set process limits     long ulimit(int cmd, ...);
1039 umask   sys_stat.h              umask - set and get the file mode creation mask mode_t umask(mode_t cmask);
1040 uname   sys_utsname.h           uname - get the name of the current system      int uname(struct utsname *name);
1041 ungetc  stdio.h         ungetc - push byte back into input stream       int ungetc(int c, FILE *stream);
1042 ungetwc stdio.h wchar.h         ungetwc - push wide-character code back into the input stream   wint_t ungetwc(wint_t wc, FILE *stream);
1043 unlink  unistd.h                unlink, unlinkat - remove a directory entry relative to directory file descriptor       int unlink(const char *path);
1044 unlinkat        unistd.h                unlink, unlinkat - remove a directory entry relative to directory file descriptor       int unlinkat(int fd, const char *path, int flag);
1045 unlockpt        stdlib.h        XSI     unlockpt - unlock a pseudo-terminal master/slave pair   int unlockpt(int fildes);
1046 unsetenv        stdlib.h        CX      unsetenv - remove an environment variable       int unsetenv(const char *name);
1047 uselocale       locale.h        CX      uselocale - use locale in current thread        locale_t uselocale(locale_t newloc);
1048 utime   utime.h OB      utime - set file access and modification times  int utime(const char *path, const struct utimbuf *times);
1049 utimensat       sys_stat.h sys_time.h           futimens, utimensat, utimes - set file access and modification times    int utimensat(int fd, const char *path, const struct timespec times[2], int flag);
1050 utimes  sys_stat.h sys_time.h   XSI     futimens, utimensat, utimes - set file access and modification times    int utimes(const char *path, const struct timeval times[2]);
1051 va_arg  stdarg.h                va_arg, va_copy, va_end, va_start - handle variable argument list       type va_arg(va_list ap, type);
1052 va_copy stdarg.h                va_arg, va_copy, va_end, va_start - handle variable argument list       void va_copy(va_list dest, va_list src);
1053 va_end  stdarg.h                va_arg, va_copy, va_end, va_start - handle variable argument list       void va_end(va_list ap);
1054 va_start        stdarg.h                va_arg, va_copy, va_end, va_start - handle variable argument list       void va_start(va_list ap, argN);
1055 vdprintf        stdarg.h stdio.h        CX      vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list      int vdprintf(int fildes, const char *restrict format, va_list ap);
1056 vfprintf        stdarg.h stdio.h                vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list      int vfprintf(FILE *restrict stream, const char *restrict format, va_list ap);
1057 vfscanf stdarg.h stdio.h                vfscanf, vscanf, vsscanf - format input of a stdarg argument list       int vfscanf(FILE *restrict stream, const char *restrict format, va_list arg);
1058 vfwprintf       stdarg.h stdio.h wchar.h                vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list      int vfwprintf(FILE *restrict stream, const wchar_t *restrict format, va_list arg);
1059 vfwscanf        stdarg.h stdio.h wchar.h                vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list  int vfwscanf(FILE *restrict stream, const wchar_t *restrict format, va_list arg);
1060 vprintf stdarg.h stdio.h                vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list      int vprintf(const char *restrict format, va_list ap);
1061 vscanf  stdarg.h stdio.h                vfscanf, vscanf, vsscanf - format input of a stdarg argument list       int vscanf(const char *restrict format, va_list arg);
1062 vsnprintf       stdarg.h stdio.h                vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list      int vsnprintf(char *restrict s, size_t n, const char *restrict format, va_list ap);
1063 vsprintf        stdarg.h stdio.h                vdprintf, vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list      int vsprintf(char *restrict s, const char *restrict format, va_list ap);
1064 vsscanf stdarg.h stdio.h                vfscanf, vscanf, vsscanf - format input of a stdarg argument list       int vsscanf(const char *restrict s, const char *restrict format, va_list arg);
1065 vswprintf       stdarg.h stdio.h wchar.h                vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list      int vswprintf(wchar_t *restrict ws, size_t n, const wchar_t *restrict format, va_list arg);
1066 vswscanf        stdarg.h stdio.h wchar.h                vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list  int vswscanf(const wchar_t *restrict ws, const wchar_t *restrict format, va_list arg);
1067 vwprintf        stdarg.h stdio.h wchar.h                vfwprintf, vswprintf, vwprintf - wide-character formatted output of a stdarg argument list      int vwprintf(const wchar_t *restrict format, va_list arg);
1068 vwscanf stdarg.h stdio.h wchar.h                vfwscanf, vswscanf, vwscanf - wide-character formatted input of a stdarg argument list  int vwscanf(const wchar_t *restrict format, va_list arg);
1069 wait    sys_wait.h              wait, waitpid - wait for a child process to stop or terminate   pid_t wait(int *stat_loc);
1070 waitid  sys_wait.h              waitid - wait for a child process to change state       int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options);
1071 waitpid sys_wait.h              wait, waitpid - wait for a child process to stop or terminate   pid_t waitpid(pid_t pid, int *stat_loc, int options);
1072 wcpcpy  wchar.h CX      wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end   wchar_t *wcpcpy(wchar_t *restrict ws1, const wchar_t *restrict ws2);
1073 wcpncpy wchar.h CX      wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end      wchar_t *wcpncpy(wchar_t restrict *ws1, const wchar_t *restrict ws2, size_t n);
1074 wcrtomb stdio.h         wcrtomb - convert a wide-character code to a character (restartable)    size_t wcrtomb(char *restrict s, wchar_t wc, mbstate_t *restrict ps);
1075 wcscasecmp      wchar.h CX      wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison        int wcscasecmp(const wchar_t *ws1, const wchar_t *ws2);
1076 wcscasecmp_l    wchar.h CX      wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison        int wcscasecmp_l(const wchar_t *ws1, const wchar_t *ws2, locale_t locale);
1077 wcscat  wchar.h         wcscat - concatenate two wide-character strings wchar_t *wcscat(wchar_t *restrict ws1, const wchar_t *restrict ws2);
1078 wcschr  wchar.h         wcschr - wide-character string scanning operation       wchar_t *wcschr(const wchar_t *ws, wchar_t wc);
1079 wcscmp  wchar.h         wcscmp - compare two wide-character strings     int wcscmp(const wchar_t *ws1, const wchar_t *ws2);
1080 wcscoll wchar.h         wcscoll, wcscoll_l - wide-character string comparison using collating information       int wcscoll(const wchar_t *ws1, const wchar_t *ws2);
1081 wcscoll_l       wchar.h CX      wcscoll, wcscoll_l - wide-character string comparison using collating information       int wcscoll_l(const wchar_t *ws1, const wchar_t *ws2, locale_t locale);
1082 wcscpy  wchar.h         wcpcpy, wcscpy - copy a wide-character string, returning a pointer to its end   wchar_t *wcscpy(wchar_t *restrict ws1, const wchar_t *restrict ws2);
1083 wcscspn wchar.h         wcscspn - get the length of a complementary wide substring      size_t wcscspn(const wchar_t *ws1, const wchar_t *ws2);
1084 wcsdup  wchar.h CX      wcsdup - duplicate a wide-character string      wchar_t *wcsdup(const wchar_t *string);
1085 wcsftime        wchar.h         wcsftime - convert date and time to a wide-character string     size_t wcsftime(wchar_t *restrict wcs, size_t maxsize, const wchar_t *restrict format, const struct tm *restrict timeptr);
1086 wcslen  wchar.h         wcslen, wcsnlen - get length of a fixed-sized wide-character string     size_t wcslen(const wchar_t *ws);
1087 wcsncasecmp     wchar.h CX      wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison        int wcsncasecmp(const wchar_t *ws1, const wchar_t *ws2, size_t n);
1088 wcsncasecmp_l   wchar.h CX      wcscasecmp, wcscasecmp_l, wcsncasecmp, wcsncasecmp_l - case-insensitive wide-character string comparison        int wcsncasecmp_l(const wchar_t *ws1, const wchar_t *ws2, size_t n, locale_t locale);
1089 wcsncat wchar.h         wcsncat - concatenate a wide-character string with part of another      wchar_t *wcsncat(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);
1090 wcsncmp wchar.h         wcsncmp - compare part of two wide-character strings    int wcsncmp(const wchar_t *ws1, const wchar_t *ws2, size_t n);
1091 wcsncpy wchar.h         wcpncpy, wcsncpy - copy a fixed-size wide-character string, returning a pointer to its end      wchar_t *wcsncpy(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);
1092 wcsnlen wchar.h CX      wcslen, wcsnlen - get length of a fixed-sized wide-character string     size_t wcsnlen(const wchar_t *ws, size_t maxlen);
1093 wcsnrtombs      wchar.h CX      wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)     size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict src, size_t nwc, size_t len, mbstate_t *restrict ps);
1094 wcspbrk wchar.h         wcspbrk - scan a wide-character string for a wide-character code        wchar_t *wcspbrk(const wchar_t *ws1, const wchar_t *ws2);
1095 wcsrchr wchar.h         wcsrchr - wide-character string scanning operation      wchar_t *wcsrchr(const wchar_t *ws, wchar_t wc);
1096 wcsrtombs       wchar.h         wcsnrtombs, wcsrtombs - convert a wide-character string to a character string (restartable)     size_t wcsrtombs(char *restrict dst, const wchar_t **restrict src, size_t len, mbstate_t *restrict ps);
1097 wcsspn  wchar.h         wcsspn - get the length of a wide substring     size_t wcsspn(const wchar_t *ws1, const wchar_t *ws2);
1098 wcsstr  wchar.h         wcsstr - find a wide-character substring        wchar_t *wcsstr(const wchar_t *restrict ws1, const wchar_t *restrict ws2);
1099 wcstod  wchar.h         wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number  double wcstod(const wchar_t *restrict nptr, wchar_t **restrict endptr);
1100 wcstof  wchar.h         wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number  float wcstof(const wchar_t *restrict nptr, wchar_t **restrict endptr);
1101 wcstoimax       stddef.h inttypes.h             wcstoimax, wcstoumax - convert a wide-character string to an integer type       intmax_t wcstoimax(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1102 wcstok  wchar.h         wcstok - split a wide-character string into tokens      wchar_t *wcstok(wchar_t *restrict ws1, const wchar_t *restrict ws2, wchar_t **restrict ptr);
1103 wcstol  wchar.h         wcstol, wcstoll - convert a wide-character string to a long integer     long wcstol(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1104 wcstold wchar.h         wcstod, wcstof, wcstold - convert a wide-character string to a double-precision number  long double wcstold(const wchar_t *restrict nptr, wchar_t **restrict endptr);
1105 wcstoll wchar.h         wcstol, wcstoll - convert a wide-character string to a long integer     long long wcstoll(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1106 wcstombs        stdlib.h                wcstombs - convert a wide-character string to a character string        size_t wcstombs(char *restrict s, const wchar_t *restrict pwcs, size_t n);
1107 wcstoul wchar.h         wcstoul, wcstoull - convert a wide-character string to an unsigned long unsigned long wcstoul(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1108 wcstoull        wchar.h         wcstoul, wcstoull - convert a wide-character string to an unsigned long unsigned long long wcstoull(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1109 wcstoumax       stddef.h inttypes.h             wcstoimax, wcstoumax - convert a wide-character string to an integer type       uintmax_t wcstoumax(const wchar_t *restrict nptr, wchar_t **restrict endptr, int base);
1110 wcswidth        wchar.h XSI     wcswidth - number of column positions of a wide-character string        int wcswidth(const wchar_t *pwcs, size_t n);
1111 wcsxfrm wchar.h         wcsxfrm, wcsxfrm_l - wide-character string transformation       size_t wcsxfrm(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);
1112 wcsxfrm_l       wchar.h CX      wcsxfrm, wcsxfrm_l - wide-character string transformation       size_t wcsxfrm_l(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n, locale_t locale);
1113 wctob   stdio.h wchar.h         wctob - wide-character to single-byte conversion        int wctob(wint_t c);
1114 wctomb  stdlib.h                wctomb - convert a wide-character code to a character   int wctomb(char *s, wchar_t wchar);
1115 wctrans wctype.h                wctrans, wctrans_l - define character mapping   wctrans_t wctrans(const char *charclass);
1116 wctrans_l       wctype.h        CX      wctrans, wctrans_l - define character mapping   wctrans_t wctrans_l(const char *charclass, locale_t locale);
1117 wctype  wctype.h                wctype, wctype_l - define character class       wctype_t wctype(const char *property);
1118 wctype_l        wctype.h        CX      wctype, wctype_l - define character class       wctype_t wctype_l(const char *property, locale_t locale);
1119 wcwidth wchar.h XSI     wcwidth - number of column positions of a wide-character code   int wcwidth(wchar_t wc);
1120 wmemchr wchar.h         wmemchr - find a wide character in memory       wchar_t *wmemchr(const wchar_t *ws, wchar_t wc, size_t n);
1121 wmemcmp wchar.h         wmemcmp - compare wide characters in memory     int wmemcmp(const wchar_t *ws1, const wchar_t *ws2, size_t n);
1122 wmemcpy wchar.h         wmemcpy - copy wide characters in memory        wchar_t *wmemcpy(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);
1123 wmemmove        wchar.h         wmemmove - copy wide characters in memory with overlapping areas        wchar_t *wmemmove(wchar_t *ws1, const wchar_t *ws2, size_t n);
1124 wmemset wchar.h         wmemset - set wide characters in memory wchar_t *wmemset(wchar_t *ws, wchar_t wc, size_t n);
1125 wordexp wordexp.h               wordexp, wordfree - perform word expansions     int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags);
1126 wordfree        wordexp.h               wordexp, wordfree - perform word expansions     void wordfree(wordexp_t *pwordexp);
1127 wprintf stdio.h wchar.h         fwprintf, swprintf, wprintf - print formatted wide-character output     int fwprintf(FILE *restrict stream, const wchar_t *restrict format, ...);
1128 write   unistd.h                pwrite, write - write on a file ssize_t pwrite(int fildes, const void *buf, size_t nbyte, off_t offset);
1129 writev  sys_uio.h       XSI     writev - write a vector ssize_t writev(int fildes, const struct iovec *iov, int iovcnt);
1130 wscanf  stdio.h wchar.h         fwscanf, swscanf, wscanf - convert formatted wide-character input       int fwscanf(FILE *restrict stream, const wchar_t *restrict format, ...);
1131 y0      math.h  XSI     y0, y1, yn - Bessel functions of the second kind        double y0(double x);
1132 y1      math.h  XSI     y0, y1, yn - Bessel functions of the second kind        double y1(double x);
1133 yn      math.h  XSI     y0, y1, yn - Bessel functions of the second kind        double yn(int n, double x);