unistd.h 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127
  1. /* Copyright (C) 1991-2002,2003,2004,2005,2006 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. /*
  16. * POSIX Standard: 2.10 Symbolic Constants <unistd.h>
  17. */
  18. #ifndef _UNISTD_H
  19. #define _UNISTD_H 1
  20. #include <features.h>
  21. __BEGIN_DECLS
  22. /* These may be used to determine what facilities are present at compile time.
  23. Their values can be obtained at run time from `sysconf'. */
  24. /* POSIX Standard approved as ISO/IEC 9945-1 as of December 2001. */
  25. #define _POSIX_VERSION 200112L
  26. /* These are not #ifdef __USE_POSIX2 because they are
  27. in the theoretically application-owned namespace. */
  28. /* The utilities on GNU systems also correspond to this version. */
  29. #define _POSIX2_VERSION 200112L
  30. /* If defined, the implementation supports the
  31. C Language Bindings Option. */
  32. #define _POSIX2_C_BIND 200112L
  33. /* If defined, the implementation supports the
  34. C Language Development Utilities Option. */
  35. #define _POSIX2_C_DEV 200112L
  36. /* If defined, the implementation supports the
  37. Software Development Utilities Option. */
  38. #define _POSIX2_SW_DEV 200112L
  39. /* If defined, the implementation supports the
  40. creation of locales with the localedef utility. */
  41. #define _POSIX2_LOCALEDEF 200112L
  42. /* X/Open version number to which the library conforms. It is selectable. */
  43. #ifdef __USE_UNIX98
  44. # define _XOPEN_VERSION 500
  45. #else
  46. # define _XOPEN_VERSION 4
  47. #endif
  48. /* Commands and utilities from XPG4 are available. */
  49. #define _XOPEN_XCU_VERSION 4
  50. /* We are compatible with the old published standards as well. */
  51. #define _XOPEN_XPG2 1
  52. #define _XOPEN_XPG3 1
  53. #define _XOPEN_XPG4 1
  54. /* The X/Open Unix extensions are available. */
  55. #define _XOPEN_UNIX 1
  56. /* Encryption is present. */
  57. #define _XOPEN_CRYPT 1
  58. /* The enhanced internationalization capabilities according to XPG4.2
  59. are present. */
  60. #define _XOPEN_ENH_I18N 1
  61. /* The legacy interfaces are also available. */
  62. #define _XOPEN_LEGACY 1
  63. /* Get values of POSIX options:
  64. If these symbols are defined, the corresponding features are
  65. always available. If not, they may be available sometimes.
  66. The current values can be obtained with `sysconf'.
  67. _POSIX_JOB_CONTROL Job control is supported.
  68. _POSIX_SAVED_IDS Processes have a saved set-user-ID
  69. and a saved set-group-ID.
  70. _POSIX_REALTIME_SIGNALS Real-time, queued signals are supported.
  71. _POSIX_PRIORITY_SCHEDULING Priority scheduling is supported.
  72. _POSIX_TIMERS POSIX.4 clocks and timers are supported.
  73. _POSIX_ASYNCHRONOUS_IO Asynchronous I/O is supported.
  74. _POSIX_PRIORITIZED_IO Prioritized asynchronous I/O is supported.
  75. _POSIX_SYNCHRONIZED_IO Synchronizing file data is supported.
  76. _POSIX_FSYNC The fsync function is present.
  77. _POSIX_MAPPED_FILES Mapping of files to memory is supported.
  78. _POSIX_MEMLOCK Locking of all memory is supported.
  79. _POSIX_MEMLOCK_RANGE Locking of ranges of memory is supported.
  80. _POSIX_MEMORY_PROTECTION Setting of memory protections is supported.
  81. _POSIX_MESSAGE_PASSING POSIX.4 message queues are supported.
  82. _POSIX_SEMAPHORES POSIX.4 counting semaphores are supported.
  83. _POSIX_SHARED_MEMORY_OBJECTS POSIX.4 shared memory objects are supported.
  84. _POSIX_THREADS POSIX.1c pthreads are supported.
  85. _POSIX_THREAD_ATTR_STACKADDR Thread stack address attribute option supported.
  86. _POSIX_THREAD_ATTR_STACKSIZE Thread stack size attribute option supported.
  87. _POSIX_THREAD_SAFE_FUNCTIONS Thread-safe functions are supported.
  88. _POSIX_THREAD_PRIORITY_SCHEDULING
  89. POSIX.1c thread execution scheduling supported.
  90. _POSIX_THREAD_PRIO_INHERIT Thread priority inheritance option supported.
  91. _POSIX_THREAD_PRIO_PROTECT Thread priority protection option supported.
  92. _POSIX_THREAD_PROCESS_SHARED Process-shared synchronization supported.
  93. _POSIX_PII Protocol-independent interfaces are supported.
  94. _POSIX_PII_XTI XTI protocol-indep. interfaces are supported.
  95. _POSIX_PII_SOCKET Socket protocol-indep. interfaces are supported.
  96. _POSIX_PII_INTERNET Internet family of protocols supported.
  97. _POSIX_PII_INTERNET_STREAM Connection-mode Internet protocol supported.
  98. _POSIX_PII_INTERNET_DGRAM Connectionless Internet protocol supported.
  99. _POSIX_PII_OSI ISO/OSI family of protocols supported.
  100. _POSIX_PII_OSI_COTS Connection-mode ISO/OSI service supported.
  101. _POSIX_PII_OSI_CLTS Connectionless ISO/OSI service supported.
  102. _POSIX_POLL Implementation supports `poll' function.
  103. _POSIX_SELECT Implementation supports `select' and `pselect'.
  104. _XOPEN_REALTIME X/Open realtime support is available.
  105. _XOPEN_REALTIME_THREADS X/Open realtime thread support is available.
  106. _XOPEN_SHM Shared memory interface according to XPG4.2.
  107. _XBS5_ILP32_OFF32 Implementation provides environment with 32-bit
  108. int, long, pointer, and off_t types.
  109. _XBS5_ILP32_OFFBIG Implementation provides environment with 32-bit
  110. int, long, and pointer and off_t with at least
  111. 64 bits.
  112. _XBS5_LP64_OFF64 Implementation provides environment with 32-bit
  113. int, and 64-bit long, pointer, and off_t types.
  114. _XBS5_LPBIG_OFFBIG Implementation provides environment with at
  115. least 32 bits int and long, pointer, and off_t
  116. with at least 64 bits.
  117. If any of these symbols is defined as -1, the corresponding option is not
  118. true for any file. If any is defined as other than -1, the corresponding
  119. option is true for all files. If a symbol is not defined at all, the value
  120. for a specific file can be obtained from `pathconf' and `fpathconf'.
  121. _POSIX_CHOWN_RESTRICTED Only the super user can use `chown' to change
  122. the owner of a file. `chown' can only be used
  123. to change the group ID of a file to a group of
  124. which the calling process is a member.
  125. _POSIX_NO_TRUNC Pathname components longer than
  126. NAME_MAX generate an error.
  127. _POSIX_VDISABLE If defined, if the value of an element of the
  128. `c_cc' member of `struct termios' is
  129. _POSIX_VDISABLE, no character will have the
  130. effect associated with that element.
  131. _POSIX_SYNC_IO Synchronous I/O may be performed.
  132. _POSIX_ASYNC_IO Asynchronous I/O may be performed.
  133. _POSIX_PRIO_IO Prioritized Asynchronous I/O may be performed.
  134. Support for the Large File Support interface is not generally available.
  135. If it is available the following constants are defined to one.
  136. _LFS64_LARGEFILE Low-level I/O supports large files.
  137. _LFS64_STDIO Standard I/O supports large files.
  138. */
  139. #include <bits/posix_opt.h>
  140. /* Get the environment definitions from Unix98. */
  141. #ifdef __USE_UNIX98
  142. # include <bits/environments.h>
  143. #endif
  144. /* Standard file descriptors. */
  145. #define STDIN_FILENO 0 /* Standard input. */
  146. #define STDOUT_FILENO 1 /* Standard output. */
  147. #define STDERR_FILENO 2 /* Standard error output. */
  148. /* All functions that are not declared anywhere else. */
  149. #include <bits/types.h>
  150. #ifndef __ssize_t_defined
  151. typedef __ssize_t ssize_t;
  152. # define __ssize_t_defined
  153. #endif
  154. #define __need_size_t
  155. #define __need_NULL
  156. #include <stddef.h>
  157. #if defined __USE_XOPEN || defined __USE_XOPEN2K
  158. /* The Single Unix specification says that some more types are
  159. available here. */
  160. # ifndef __gid_t_defined
  161. typedef __gid_t gid_t;
  162. # define __gid_t_defined
  163. # endif
  164. # ifndef __uid_t_defined
  165. typedef __uid_t uid_t;
  166. # define __uid_t_defined
  167. # endif
  168. # ifndef __off_t_defined
  169. # ifndef __USE_FILE_OFFSET64
  170. typedef __off_t off_t;
  171. # else
  172. typedef __off64_t off_t;
  173. # endif
  174. # define __off_t_defined
  175. # endif
  176. # if defined __USE_LARGEFILE64 && !defined __off64_t_defined
  177. typedef __off64_t off64_t;
  178. # define __off64_t_defined
  179. # endif
  180. # ifndef __useconds_t_defined
  181. typedef __useconds_t useconds_t;
  182. # define __useconds_t_defined
  183. # endif
  184. # ifndef __pid_t_defined
  185. typedef __pid_t pid_t;
  186. # define __pid_t_defined
  187. # endif
  188. #endif /* X/Open */
  189. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  190. # ifndef __intptr_t_defined
  191. typedef __intptr_t intptr_t;
  192. # define __intptr_t_defined
  193. # endif
  194. #endif
  195. #if defined __USE_BSD || defined __USE_XOPEN
  196. # ifndef __socklen_t_defined
  197. typedef __socklen_t socklen_t;
  198. # define __socklen_t_defined
  199. # endif
  200. #endif
  201. /* Values for the second argument to access.
  202. These may be OR'd together. */
  203. #define R_OK 4 /* Test for read permission. */
  204. #define W_OK 2 /* Test for write permission. */
  205. #define X_OK 1 /* Test for execute permission. */
  206. #define F_OK 0 /* Test for existence. */
  207. /* Test for access to NAME using the real UID and real GID. */
  208. extern int access (__const char *__name, int __type) __THROW __nonnull ((1));
  209. #if 0 /*def __USE_GNU*/
  210. /* Test for access to NAME using the effective UID and GID
  211. (as normal file operations use). */
  212. extern int euidaccess (__const char *__name, int __type)
  213. __THROW __nonnull ((1));
  214. /* An alias for `euidaccess', used by some other systems. */
  215. extern int eaccess (__const char *__name, int __type)
  216. __THROW __nonnull ((1));
  217. #endif
  218. #ifdef __USE_ATFILE
  219. /* Test for access to FILE relative to the directory FD is open on.
  220. If AT_EACCESS is set in FLAG, then use effective IDs like `eaccess',
  221. otherwise use real IDs like `access'. */
  222. extern int faccessat (int __fd, __const char *__file, int __type, int __flag)
  223. __THROW __nonnull ((2)) __wur;
  224. #endif /* Use GNU. */
  225. /* Values for the WHENCE argument to lseek. */
  226. #ifndef _STDIO_H /* <stdio.h> has the same definitions. */
  227. # define SEEK_SET 0 /* Seek from beginning of file. */
  228. # define SEEK_CUR 1 /* Seek from current position. */
  229. # define SEEK_END 2 /* Seek from end of file. */
  230. #endif
  231. #if defined __USE_BSD && !defined L_SET
  232. /* Old BSD names for the same constants; just for compatibility. */
  233. # define L_SET SEEK_SET
  234. # define L_INCR SEEK_CUR
  235. # define L_XTND SEEK_END
  236. #endif
  237. /* Move FD's file position to OFFSET bytes from the
  238. beginning of the file (if WHENCE is SEEK_SET),
  239. the current position (if WHENCE is SEEK_CUR),
  240. or the end of the file (if WHENCE is SEEK_END).
  241. Return the new file position. */
  242. #ifndef __USE_FILE_OFFSET64
  243. extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
  244. #else
  245. # ifdef __REDIRECT_NTH
  246. extern __off64_t __REDIRECT_NTH (lseek,
  247. (int __fd, __off64_t __offset, int __whence),
  248. lseek64);
  249. # else
  250. # define lseek lseek64
  251. # endif
  252. #endif
  253. #ifdef __USE_LARGEFILE64
  254. extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence)
  255. __THROW;
  256. #endif
  257. /* Close the file descriptor FD.
  258. This function is a cancellation point and therefore not marked with
  259. __THROW. */
  260. extern int close (int __fd);
  261. /* Read NBYTES into BUF from FD. Return the
  262. number read, -1 for errors or 0 for EOF.
  263. This function is a cancellation point and therefore not marked with
  264. __THROW. */
  265. extern ssize_t read (int __fd, void *__buf, size_t __nbytes) __wur;
  266. /* Write N bytes of BUF to FD. Return the number written, or -1.
  267. This function is a cancellation point and therefore not marked with
  268. __THROW. */
  269. extern ssize_t write (int __fd, __const void *__buf, size_t __n) __wur;
  270. #ifdef __USE_UNIX98
  271. # ifndef __USE_FILE_OFFSET64
  272. /* Read NBYTES into BUF from FD at the given position OFFSET without
  273. changing the file pointer. Return the number read, -1 for errors
  274. or 0 for EOF.
  275. This function is a cancellation point and therefore not marked with
  276. __THROW. */
  277. extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
  278. __off_t __offset) __wur;
  279. /* Write N bytes of BUF to FD at the given position OFFSET without
  280. changing the file pointer. Return the number written, or -1.
  281. This function is a cancellation point and therefore not marked with
  282. __THROW. */
  283. extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
  284. __off_t __offset) __wur;
  285. # else
  286. # ifdef __REDIRECT
  287. extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
  288. __off64_t __offset),
  289. pread64) __wur;
  290. extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
  291. size_t __nbytes, __off64_t __offset),
  292. pwrite64) __wur;
  293. # else
  294. # define pread pread64
  295. # define pwrite pwrite64
  296. # endif
  297. # endif
  298. # ifdef __USE_LARGEFILE64
  299. /* Read NBYTES into BUF from FD at the given position OFFSET without
  300. changing the file pointer. Return the number read, -1 for errors
  301. or 0 for EOF. */
  302. extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
  303. __off64_t __offset) __wur;
  304. /* Write N bytes of BUF to FD at the given position OFFSET without
  305. changing the file pointer. Return the number written, or -1. */
  306. extern ssize_t pwrite64 (int __fd, __const void *__buf, size_t __n,
  307. __off64_t __offset) __wur;
  308. # endif
  309. #endif
  310. /* Create a one-way communication channel (pipe).
  311. If successful, two file descriptors are stored in PIPEDES;
  312. bytes written on PIPEDES[1] can be read from PIPEDES[0].
  313. Returns 0 if successful, -1 if not. */
  314. extern int pipe (int __pipedes[2]) __THROW __wur;
  315. /* Schedule an alarm. In SECONDS seconds, the process will get a SIGALRM.
  316. If SECONDS is zero, any currently scheduled alarm will be cancelled.
  317. The function returns the number of seconds remaining until the last
  318. alarm scheduled would have signaled, or zero if there wasn't one.
  319. There is no return value to indicate an error, but you can set `errno'
  320. to 0 and check its value after calling `alarm', and this might tell you.
  321. The signal may come late due to processor scheduling. */
  322. extern unsigned int alarm (unsigned int __seconds) __THROW;
  323. /* Make the process sleep for SECONDS seconds, or until a signal arrives
  324. and is not ignored. The function returns the number of seconds less
  325. than SECONDS which it actually slept (thus zero if it slept the full time).
  326. If a signal handler does a `longjmp' or modifies the handling of the
  327. SIGALRM signal while inside `sleep' call, the handling of the SIGALRM
  328. signal afterwards is undefined. There is no return value to indicate
  329. error, but if `sleep' returns SECONDS, it probably didn't work.
  330. This function is a cancellation point and therefore not marked with
  331. __THROW. */
  332. extern unsigned int sleep (unsigned int __seconds);
  333. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  334. /* Set an alarm to go off (generating a SIGALRM signal) in VALUE
  335. microseconds. If INTERVAL is nonzero, when the alarm goes off, the
  336. timer is reset to go off every INTERVAL microseconds thereafter.
  337. Returns the number of microseconds remaining before the alarm. */
  338. extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
  339. __THROW;
  340. /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked
  341. or ignored.
  342. This function is a cancellation point and therefore not marked with
  343. __THROW. */
  344. extern int usleep (__useconds_t __useconds);
  345. #endif
  346. /* Suspend the process until a signal arrives.
  347. This always returns -1 and sets `errno' to EINTR.
  348. This function is a cancellation point and therefore not marked with
  349. __THROW. */
  350. extern int pause (void);
  351. /* Change the owner and group of FILE. */
  352. extern int chown (__const char *__file, __uid_t __owner, __gid_t __group)
  353. __THROW __nonnull ((1)) __wur;
  354. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  355. /* Change the owner and group of the file that FD is open on. */
  356. extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __THROW __wur;
  357. /* Change owner and group of FILE, if it is a symbolic
  358. link the ownership of the symbolic link is changed. */
  359. extern int lchown (__const char *__file, __uid_t __owner, __gid_t __group)
  360. __THROW __nonnull ((1)) __wur;
  361. #endif /* Use BSD || X/Open Unix. */
  362. #ifdef __USE_ATFILE
  363. /* Change the owner and group of FILE relative to the directory FD is open
  364. on. */
  365. extern int fchownat (int __fd, __const char *__file, __uid_t __owner,
  366. __gid_t __group, int __flag)
  367. __THROW __nonnull ((2)) __wur;
  368. #endif /* Use GNU. */
  369. /* Change the process's working directory to PATH. */
  370. extern int chdir (__const char *__path) __THROW __nonnull ((1)) __wur;
  371. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  372. /* Change the process's working directory to the one FD is open on. */
  373. extern int fchdir (int __fd) __THROW __wur;
  374. #endif
  375. /* Get the pathname of the current working directory,
  376. and put it in SIZE bytes of BUF. Returns NULL if the
  377. directory couldn't be determined or SIZE was too small.
  378. If successful, returns BUF. In GNU, if BUF is NULL,
  379. an array is allocated with `malloc'; the array is SIZE
  380. bytes long, unless SIZE == 0, in which case it is as
  381. big as necessary. */
  382. extern char *getcwd (char *__buf, size_t __size) __THROW __wur;
  383. #ifdef __USE_GNU
  384. /* Return a malloc'd string containing the current directory name.
  385. If the environment variable `PWD' is set, and its value is correct,
  386. that value is used. */
  387. extern char *get_current_dir_name (void) __THROW;
  388. #endif
  389. #if 0 /*defined __USE_BSD || defined __USE_XOPEN_EXTENDED*/
  390. /* Put the absolute pathname of the current working directory in BUF.
  391. If successful, return BUF. If not, put an error message in
  392. BUF and return NULL. BUF should be at least PATH_MAX bytes long. */
  393. extern char *getwd (char *__buf)
  394. __THROW __nonnull ((1)) __attribute_deprecated__ __wur;
  395. #endif
  396. /* Duplicate FD, returning a new file descriptor on the same file. */
  397. extern int dup (int __fd) __THROW __wur;
  398. /* Duplicate FD to FD2, closing FD2 and making it open on the same file. */
  399. extern int dup2 (int __fd, int __fd2) __THROW;
  400. /* NULL-terminated array of "NAME=VALUE" environment variables. */
  401. extern char **__environ;
  402. #ifdef __USE_GNU
  403. extern char **environ;
  404. #endif
  405. /* Replace the current process, executing PATH with arguments ARGV and
  406. environment ENVP. ARGV and ENVP are terminated by NULL pointers. */
  407. extern int execve (__const char *__path, char *__const __argv[],
  408. char *__const __envp[]) __THROW __nonnull ((1));
  409. #if 0 /*def __USE_GNU*/
  410. /* Execute the file FD refers to, overlaying the running program image.
  411. ARGV and ENVP are passed to the new program, as for `execve'. */
  412. extern int fexecve (int __fd, char *__const __argv[], char *__const __envp[])
  413. __THROW;
  414. #endif
  415. /* Execute PATH with arguments ARGV and environment from `environ'. */
  416. extern int execv (__const char *__path, char *__const __argv[])
  417. __THROW __nonnull ((1));
  418. /* Execute PATH with all arguments after PATH until a NULL pointer,
  419. and the argument after that for environment. */
  420. extern int execle (__const char *__path, __const char *__arg, ...)
  421. __THROW __nonnull ((1));
  422. /* Execute PATH with all arguments after PATH until
  423. a NULL pointer and environment from `environ'. */
  424. extern int execl (__const char *__path, __const char *__arg, ...)
  425. __THROW __nonnull ((1));
  426. /* Execute FILE, searching in the `PATH' environment variable if it contains
  427. no slashes, with arguments ARGV and environment from `environ'. */
  428. extern int execvp (__const char *__file, char *__const __argv[])
  429. __THROW __nonnull ((1));
  430. /* Execute FILE, searching in the `PATH' environment variable if
  431. it contains no slashes, with all arguments after FILE until a
  432. NULL pointer and environment from `environ'. */
  433. extern int execlp (__const char *__file, __const char *__arg, ...)
  434. __THROW __nonnull ((1));
  435. #if defined __USE_MISC || defined __USE_XOPEN
  436. /* Add INC to priority of the current process. */
  437. extern int nice (int __inc) __THROW __wur;
  438. #endif
  439. /* Terminate program execution with the low-order 8 bits of STATUS. */
  440. extern void _exit (int __status) __attribute__ ((__noreturn__));
  441. /* Get the `_PC_*' symbols for the NAME argument to `pathconf' and `fpathconf';
  442. the `_SC_*' symbols for the NAME argument to `sysconf';
  443. and the `_CS_*' symbols for the NAME argument to `confstr'. */
  444. #include <bits/confname.h>
  445. /* Get file-specific configuration information about PATH. */
  446. extern long int pathconf (__const char *__path, int __name)
  447. __THROW __nonnull ((1));
  448. /* Get file-specific configuration about descriptor FD. */
  449. extern long int fpathconf (int __fd, int __name) __THROW;
  450. /* Get the value of the system variable NAME. */
  451. extern long int sysconf (int __name) __THROW;
  452. #ifdef __USE_POSIX2
  453. /* Get the value of the string-valued system variable NAME. */
  454. extern size_t confstr (int __name, char *__buf, size_t __len) __THROW;
  455. #endif
  456. /* Get the process ID of the calling process. */
  457. extern __pid_t getpid (void) __THROW;
  458. /* Get the process ID of the calling process's parent. */
  459. extern __pid_t getppid (void) __THROW;
  460. /* Get the process group ID of the calling process.
  461. This function is different on old BSD. */
  462. #ifndef __FAVOR_BSD
  463. extern __pid_t getpgrp (void) __THROW;
  464. #else
  465. # ifdef __REDIRECT_NTH
  466. extern __pid_t __REDIRECT_NTH (getpgrp, (__pid_t __pid), __getpgid);
  467. # else
  468. # define getpgrp __getpgid
  469. # endif
  470. #endif
  471. /* Get the process group ID of process PID. */
  472. extern __pid_t __getpgid (__pid_t __pid) __THROW;
  473. #ifdef __USE_XOPEN_EXTENDED
  474. extern __pid_t getpgid (__pid_t __pid) __THROW;
  475. #endif
  476. /* Set the process group ID of the process matching PID to PGID.
  477. If PID is zero, the current process's process group ID is set.
  478. If PGID is zero, the process ID of the process is used. */
  479. extern int setpgid (__pid_t __pid, __pid_t __pgid) __THROW;
  480. #if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  481. /* Both System V and BSD have `setpgrp' functions, but with different
  482. calling conventions. The BSD function is the same as POSIX.1 `setpgid'
  483. (above). The System V function takes no arguments and puts the calling
  484. process in its on group like `setpgid (0, 0)'.
  485. New programs should always use `setpgid' instead.
  486. The default in GNU is to provide the System V function. The BSD
  487. function is available under -D_BSD_SOURCE. */
  488. # ifndef __FAVOR_BSD
  489. /* Set the process group ID of the calling process to its own PID.
  490. This is exactly the same as `setpgid (0, 0)'. */
  491. extern int setpgrp (void) __THROW;
  492. # else
  493. /* Another name for `setpgid' (above). */
  494. # ifdef __REDIRECT_NTH
  495. extern int __REDIRECT_NTH (setpgrp, (__pid_t __pid, __pid_t __pgrp), setpgid);
  496. # else
  497. # define setpgrp setpgid
  498. # endif
  499. # endif /* Favor BSD. */
  500. #endif /* Use SVID or BSD. */
  501. /* Create a new session with the calling process as its leader.
  502. The process group IDs of the session and the calling process
  503. are set to the process ID of the calling process, which is returned. */
  504. extern __pid_t setsid (void) __THROW;
  505. #ifdef __USE_XOPEN_EXTENDED
  506. /* Return the session ID of the given process. */
  507. extern __pid_t getsid (__pid_t __pid) __THROW;
  508. #endif
  509. /* Get the real user ID of the calling process. */
  510. extern __uid_t getuid (void) __THROW;
  511. /* Get the effective user ID of the calling process. */
  512. extern __uid_t geteuid (void) __THROW;
  513. /* Get the real group ID of the calling process. */
  514. extern __gid_t getgid (void) __THROW;
  515. /* Get the effective group ID of the calling process. */
  516. extern __gid_t getegid (void) __THROW;
  517. /* If SIZE is zero, return the number of supplementary groups
  518. the calling process is in. Otherwise, fill in the group IDs
  519. of its supplementary groups in LIST and return the number written. */
  520. extern int getgroups (int __size, __gid_t __list[]) __THROW __wur;
  521. #if 0 /*def __USE_GNU*/
  522. /* Return nonzero iff the calling process is in group GID. */
  523. extern int group_member (__gid_t __gid) __THROW;
  524. #endif
  525. /* Set the user ID of the calling process to UID.
  526. If the calling process is the super-user, set the real
  527. and effective user IDs, and the saved set-user-ID to UID;
  528. if not, the effective user ID is set to UID. */
  529. extern int setuid (__uid_t __uid) __THROW;
  530. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  531. /* Set the real user ID of the calling process to RUID,
  532. and the effective user ID of the calling process to EUID. */
  533. extern int setreuid (__uid_t __ruid, __uid_t __euid) __THROW;
  534. #endif
  535. #if defined __USE_BSD || defined __USE_XOPEN2K
  536. /* Set the effective user ID of the calling process to UID. */
  537. extern int seteuid (__uid_t __uid) __THROW;
  538. #endif /* Use BSD. */
  539. /* Set the group ID of the calling process to GID.
  540. If the calling process is the super-user, set the real
  541. and effective group IDs, and the saved set-group-ID to GID;
  542. if not, the effective group ID is set to GID. */
  543. extern int setgid (__gid_t __gid) __THROW;
  544. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  545. /* Set the real group ID of the calling process to RGID,
  546. and the effective group ID of the calling process to EGID. */
  547. extern int setregid (__gid_t __rgid, __gid_t __egid) __THROW;
  548. #endif
  549. #if defined __USE_BSD || defined __USE_XOPEN2K
  550. /* Set the effective group ID of the calling process to GID. */
  551. extern int setegid (__gid_t __gid) __THROW;
  552. #endif /* Use BSD. */
  553. #ifdef __USE_GNU
  554. /* Fetch the real user ID, effective user ID, and saved-set user ID,
  555. of the calling process. */
  556. extern int getresuid (__uid_t *__ruid, __uid_t *__euid, __uid_t *__suid)
  557. __THROW;
  558. /* Fetch the real group ID, effective group ID, and saved-set group ID,
  559. of the calling process. */
  560. extern int getresgid (__gid_t *__rgid, __gid_t *__egid, __gid_t *__sgid)
  561. __THROW;
  562. #if defined __UCLIBC_LINUX_SPECIFIC__
  563. /* Set the real user ID, effective user ID, and saved-set user ID,
  564. of the calling process to RUID, EUID, and SUID, respectively. */
  565. extern int setresuid (__uid_t __ruid, __uid_t __euid, __uid_t __suid)
  566. __THROW;
  567. #endif
  568. /* Set the real group ID, effective group ID, and saved-set group ID,
  569. of the calling process to RGID, EGID, and SGID, respectively. */
  570. extern int setresgid (__gid_t __rgid, __gid_t __egid, __gid_t __sgid)
  571. __THROW;
  572. #endif
  573. #if defined __UCLIBC_HAS_STUBS__ || defined __ARCH_USE_MMU__
  574. /* Clone the calling process, creating an exact copy.
  575. Return -1 for errors, 0 to the new process,
  576. and the process ID of the new process to the old process. */
  577. extern __pid_t fork (void) __THROW;
  578. #endif
  579. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  580. /* Clone the calling process, but without copying the whole address space.
  581. The calling process is suspended until the new process exits or is
  582. replaced by a call to `execve'. Return -1 for errors, 0 to the new process,
  583. and the process ID of the new process to the old process. */
  584. extern __pid_t vfork (void) __THROW;
  585. #endif /* Use BSD. */
  586. /* Return the pathname of the terminal FD is open on, or NULL on errors.
  587. The returned storage is good only until the next call to this function. */
  588. extern char *ttyname (int __fd) __THROW;
  589. /* Store at most BUFLEN characters of the pathname of the terminal FD is
  590. open on in BUF. Return 0 on success, otherwise an error number. */
  591. extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
  592. __THROW __nonnull ((2)) __wur;
  593. /* Return 1 if FD is a valid descriptor associated
  594. with a terminal, zero if not. */
  595. extern int isatty (int __fd) __THROW;
  596. #if 0 /*defined __USE_BSD \
  597. || (defined __USE_XOPEN_EXTENDED && !defined __USE_UNIX98)*/
  598. /* Return the index into the active-logins file (utmp) for
  599. the controlling terminal. */
  600. extern int ttyslot (void) __THROW;
  601. #endif
  602. /* Make a link to FROM named TO. */
  603. extern int link (__const char *__from, __const char *__to)
  604. __THROW __nonnull ((1, 2)) __wur;
  605. #ifdef __USE_ATFILE
  606. /* Like link but relative paths in TO and FROM are interpreted relative
  607. to FROMFD and TOFD respectively. */
  608. extern int linkat (int __fromfd, __const char *__from, int __tofd,
  609. __const char *__to, int __flags)
  610. __THROW __nonnull ((2, 4)) __wur;
  611. #endif
  612. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  613. /* Make a symbolic link to FROM named TO. */
  614. extern int symlink (__const char *__from, __const char *__to)
  615. __THROW __nonnull ((1, 2)) __wur;
  616. /* Read the contents of the symbolic link PATH into no more than
  617. LEN bytes of BUF. The contents are not null-terminated.
  618. Returns the number of characters read, or -1 for errors. */
  619. extern ssize_t readlink (__const char *__restrict __path,
  620. char *__restrict __buf, size_t __len)
  621. __THROW __nonnull ((1, 2)) __wur;
  622. #endif /* Use BSD. */
  623. #ifdef __USE_ATFILE
  624. /* Like symlink but a relative path in TO is interpreted relative to TOFD. */
  625. extern int symlinkat (__const char *__from, int __tofd,
  626. __const char *__to) __THROW __nonnull ((1, 3)) __wur;
  627. /* Like readlink but a relative PATH is interpreted relative to FD. */
  628. extern ssize_t readlinkat (int __fd, __const char *__restrict __path,
  629. char *__restrict __buf, size_t __len)
  630. __THROW __nonnull ((2, 3)) __wur;
  631. #endif
  632. /* Remove the link NAME. */
  633. extern int unlink (__const char *__name) __THROW __nonnull ((1));
  634. #ifdef __USE_ATFILE
  635. /* Remove the link NAME relative to FD. */
  636. extern int unlinkat (int __fd, __const char *__name, int __flag)
  637. __THROW __nonnull ((2));
  638. #endif
  639. /* Remove the directory PATH. */
  640. extern int rmdir (__const char *__path) __THROW __nonnull ((1));
  641. /* Return the foreground process group ID of FD. */
  642. extern __pid_t tcgetpgrp (int __fd) __THROW;
  643. /* Set the foreground process group ID of FD set PGRP_ID. */
  644. extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
  645. /* Return the login name of the user.
  646. This function is a possible cancellation points and therefore not
  647. marked with __THROW. */
  648. extern char *getlogin (void);
  649. #if defined __USE_REENTRANT || defined __USE_POSIX199506
  650. /* Return at most NAME_LEN characters of the login name of the user in NAME.
  651. If it cannot be determined or some other error occurred, return the error
  652. code. Otherwise return 0.
  653. This function is a possible cancellation points and therefore not
  654. marked with __THROW. */
  655. extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1));
  656. #endif
  657. #if 0 /*def __USE_BSD*/
  658. /* Set the login name returned by `getlogin'. */
  659. extern int setlogin (__const char *__name) __THROW __nonnull ((1));
  660. #endif
  661. #ifdef __USE_POSIX2
  662. /* Get definitions and prototypes for functions to process the
  663. arguments in ARGV (ARGC of them, minus the program name) for
  664. options given in OPTS. */
  665. # define __need_getopt
  666. /* keep this for uClibc in bits/, we need it when GNU_GETOPT is disabled */
  667. # include <bits/getopt.h>
  668. #endif
  669. #if defined __USE_BSD || defined __USE_UNIX98
  670. /* Put the name of the current host in no more than LEN bytes of NAME.
  671. The result is null-terminated if LEN is large enough for the full
  672. name and the terminator. */
  673. extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
  674. #endif
  675. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
  676. /* Set the name of the current host to NAME, which is LEN bytes long.
  677. This call is restricted to the super-user. */
  678. extern int sethostname (__const char *__name, size_t __len)
  679. __THROW __nonnull ((1)) __wur;
  680. /* Set the current machine's Internet number to ID.
  681. This call is restricted to the super-user. */
  682. extern int sethostid (long int __id) __THROW __wur;
  683. #if defined __UCLIBC_BSD_SPECIFIC__
  684. /* Get and set the NIS (aka YP) domain name, if any.
  685. Called just like `gethostname' and `sethostname'.
  686. The NIS domain name is usually the empty string when not using NIS. */
  687. extern int getdomainname (char *__name, size_t __len)
  688. __THROW __nonnull ((1)) __wur;
  689. extern int setdomainname (__const char *__name, size_t __len)
  690. __THROW __nonnull ((1)) __wur;
  691. #endif
  692. #if defined __UCLIBC_LINUX_SPECIFIC__
  693. /* Revoke access permissions to all processes currently communicating
  694. with the control terminal, and then send a SIGHUP signal to the process
  695. group of the control terminal. */
  696. extern int vhangup (void) __THROW;
  697. #endif
  698. #if 0
  699. /* Revoke the access of all descriptors currently open on FILE. */
  700. extern int revoke (__const char *__file) __THROW __nonnull ((1)) __wur;
  701. /* Enable statistical profiling, writing samples of the PC into at most
  702. SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
  703. is enabled, the system examines the user PC and increments
  704. SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
  705. disable profiling. Returns zero on success, -1 on error. */
  706. extern int profil (unsigned short int *__sample_buffer, size_t __size,
  707. size_t __offset, unsigned int __scale)
  708. __THROW __nonnull ((1));
  709. #endif
  710. /* Turn accounting on if NAME is an existing file. The system will then write
  711. a record for each process as it terminates, to this file. If NAME is NULL,
  712. turn accounting off. This call is restricted to the super-user. */
  713. extern int acct (__const char *__name) __THROW;
  714. /* Successive calls return the shells listed in `/etc/shells'. */
  715. extern char *getusershell (void) __THROW;
  716. extern void endusershell (void) __THROW; /* Discard cached info. */
  717. extern void setusershell (void) __THROW; /* Rewind and re-read the file. */
  718. #ifdef __ARCH_USE_MMU__
  719. /* Put the program in the background, and dissociate from the controlling
  720. terminal. If NOCHDIR is zero, do `chdir ("/")'. If NOCLOSE is zero,
  721. redirects stdin, stdout, and stderr to /dev/null. */
  722. extern int daemon (int __nochdir, int __noclose) __THROW __wur;
  723. #endif
  724. #endif /* Use BSD || X/Open. */
  725. #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
  726. /* Make PATH be the root directory (the starting point for absolute paths).
  727. This call is restricted to the super-user. */
  728. extern int chroot (__const char *__path) __THROW __nonnull ((1)) __wur;
  729. /* Prompt with PROMPT and read a string from the terminal without echoing.
  730. Uses /dev/tty if possible; otherwise stderr and stdin. */
  731. extern char *getpass (__const char *__prompt) __nonnull ((1));
  732. #endif /* Use BSD || X/Open. */
  733. #if defined __USE_BSD || defined __USE_XOPEN
  734. /* Make all changes done to FD actually appear on disk.
  735. This function is a cancellation point and therefore not marked with
  736. __THROW. */
  737. extern int fsync (int __fd);
  738. #endif /* Use BSD || X/Open. */
  739. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  740. /* Return identifier for the current host. */
  741. extern long int gethostid (void);
  742. /* Make all changes done to all files actually appear on disk. */
  743. extern void sync (void) __THROW;
  744. /* Return the number of bytes in a page. This is the system's page size,
  745. which is not necessarily the same as the hardware page size. */
  746. extern int getpagesize (void) __THROW __attribute__ ((__const__));
  747. /* Return the maximum number of file descriptors
  748. the current process could possibly have. */
  749. extern int getdtablesize (void) __THROW;
  750. /* Truncate FILE to LENGTH bytes. */
  751. # ifndef __USE_FILE_OFFSET64
  752. extern int truncate (__const char *__file, __off_t __length)
  753. __THROW __nonnull ((1)) __wur;
  754. # else
  755. # ifdef __REDIRECT_NTH
  756. extern int __REDIRECT_NTH (truncate,
  757. (__const char *__file, __off64_t __length),
  758. truncate64) __nonnull ((1)) __wur;
  759. # else
  760. # define truncate truncate64
  761. # endif
  762. # endif
  763. # ifdef __USE_LARGEFILE64
  764. extern int truncate64 (__const char *__file, __off64_t __length)
  765. __THROW __nonnull ((1)) __wur;
  766. # endif
  767. #endif /* Use BSD || X/Open Unix. */
  768. #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K
  769. /* Truncate the file FD is open on to LENGTH bytes. */
  770. # ifndef __USE_FILE_OFFSET64
  771. extern int ftruncate (int __fd, __off_t __length) __THROW __wur;
  772. # else
  773. # ifdef __REDIRECT_NTH
  774. extern int __REDIRECT_NTH (ftruncate, (int __fd, __off64_t __length),
  775. ftruncate64) __wur;
  776. # else
  777. # define ftruncate ftruncate64
  778. # endif
  779. # endif
  780. # ifdef __USE_LARGEFILE64
  781. extern int ftruncate64 (int __fd, __off64_t __length) __THROW __wur;
  782. # endif
  783. #endif /* Use BSD || X/Open Unix || POSIX 2003. */
  784. #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
  785. /* Set the end of accessible data space (aka "the break") to ADDR.
  786. Returns zero on success and -1 for errors (with errno set). */
  787. extern int brk (void *__addr) __THROW __wur;
  788. /* Increase or decrease the end of accessible data space by DELTA bytes.
  789. If successful, returns the address the previous end of data space
  790. (i.e. the beginning of the new space, if DELTA > 0);
  791. returns (void *) -1 for errors (with errno set). */
  792. extern void *sbrk (intptr_t __delta) __THROW;
  793. #endif
  794. #ifdef __USE_MISC
  795. /* Invoke `system call' number SYSNO, passing it the remaining arguments.
  796. This is completely system-dependent, and not often useful.
  797. In Unix, `syscall' sets `errno' for all errors and most calls return -1
  798. for errors; in many systems you cannot pass arguments or get return
  799. values for all system calls (`pipe', `fork', and `getppid' typically
  800. among them).
  801. In Mach, all system calls take normal arguments and always return an
  802. error code (zero for success). */
  803. extern long int syscall (long int __sysno, ...) __THROW;
  804. #endif /* Use misc. */
  805. #if (defined __USE_MISC || defined __USE_XOPEN_EXTENDED) && !defined F_LOCK
  806. /* NOTE: These declarations also appear in <fcntl.h>; be sure to keep both
  807. files consistent. Some systems have them there and some here, and some
  808. software depends on the macros being defined without including both. */
  809. /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
  810. LEN is always relative to the current file position.
  811. The CMD argument is one of the following.
  812. This function is a cancellation point and therefore not marked with
  813. __THROW. */
  814. # define F_ULOCK 0 /* Unlock a previously locked region. */
  815. # define F_LOCK 1 /* Lock a region for exclusive use. */
  816. # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
  817. # define F_TEST 3 /* Test a region for other processes locks. */
  818. # ifndef __USE_FILE_OFFSET64
  819. extern int lockf (int __fd, int __cmd, __off_t __len) __wur;
  820. # else
  821. # ifdef __REDIRECT
  822. extern int __REDIRECT (lockf, (int __fd, int __cmd, __off64_t __len),
  823. lockf64) __wur;
  824. # else
  825. # define lockf lockf64
  826. # endif
  827. # endif
  828. # ifdef __USE_LARGEFILE64
  829. extern int lockf64 (int __fd, int __cmd, __off64_t __len) __wur;
  830. # endif
  831. #endif /* Use misc and F_LOCK not already defined. */
  832. #ifdef __USE_GNU
  833. /* Evaluate EXPRESSION, and repeat as long as it returns -1 with `errno'
  834. set to EINTR. */
  835. # define TEMP_FAILURE_RETRY(expression) \
  836. (__extension__ \
  837. ({ long int __result; \
  838. do __result = (long int) (expression); \
  839. while (__result == -1L && errno == EINTR); \
  840. __result; }))
  841. #endif
  842. #if (defined __USE_POSIX199309 || defined __USE_UNIX98) \
  843. && defined __UCLIBC_HAS_REALTIME__
  844. /* Synchronize at least the data part of a file with the underlying
  845. media. */
  846. extern int fdatasync (int __fildes) __THROW;
  847. #endif /* Use POSIX199309 */
  848. /* XPG4.2 specifies that prototypes for the encryption functions must
  849. be defined here. */
  850. #ifdef __USE_XOPEN
  851. # if defined __UCLIBC_HAS_CRYPT__
  852. /* Encrypt at most 8 characters from KEY using salt to perturb DES. */
  853. extern char *crypt (__const char *__key, __const char *__salt)
  854. __THROW __nonnull ((1, 2));
  855. /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
  856. block in place. */
  857. extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
  858. # endif /* __UCLIBC_HAS_CRYPT__ */
  859. /* Swab pairs bytes in the first N bytes of the area pointed to by
  860. FROM and copy the result to TO. The value of TO must not be in the
  861. range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
  862. is without partner. */
  863. extern void swab (__const void *__restrict __from, void *__restrict __to,
  864. ssize_t __n) __THROW __nonnull ((1, 2));
  865. #endif
  866. /* The Single Unix specification demands this prototype to be here.
  867. It is also found in <stdio.h>. */
  868. #ifdef __USE_XOPEN
  869. /* Return the name of the controlling terminal. */
  870. extern char *ctermid (char *__s) __THROW;
  871. #endif
  872. /* Define some macros helping to catch buffer overflows. */
  873. #if __USE_FORTIFY_LEVEL > 0 && !defined __cplusplus
  874. # include <bits/unistd.h>
  875. #endif
  876. __END_DECLS
  877. #ifdef UCLIBC_INTERNAL
  878. #ifndef smallint_type /* if arch didn't override it in bits/wordsize.h */
  879. #define smallint_type int
  880. #endif
  881. typedef signed smallint_type smallint;
  882. typedef unsigned smallint_type smalluint;
  883. #endif
  884. #endif /* unistd.h */