COMPLETE.T
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2535k
源码类别:

操作系统开发

开发平台:

C/C++

  1. .fp 5 CW LucidaT   ." To use a font other than Lucida, change 'LucidaT'
  2. .po .9i
  3. .lg 0
  4. .nf
  5. .ec `
  6. .ps 7
  7. .vs 9
  8. .lt 5.25i
  9. `f5
  10. .nr Tb `w'0'
  11. .nr Fp 0
  12. .ta 9u*`n(Tbu 17u*`n(Tbu 25u*`n(Tbu 33u*`n(Tbu 41u*`n(Tbu 49u*`n(Tbu 57u*`n(Tbu 65u*`n(Tbu 73u*`n(Tbu 81u*`n(Tbu
  13. .de Op 
  14. .if ``n(Fp>0 .bp
  15. .nr Fp 1
  16. .sp 0.75i
  17. .tl '``fR``s10MINIX SOURCE CODE``s0'``s11File: ``$2``s0``fP'``fB``s12``n%``s0``fP'
  18. .sp 0.25i
  19. ..
  20. .de Ep 
  21. .if ``n(Fp>0 .bp
  22. .sp 0.75i
  23. .tl '``fB``s12``n%``s0``fP``fR'``s11File: ``$2'``s0``s10MINIX SOURCE CODE``s0``fP'
  24. .nr Fp 1
  25. .sp 0.25i
  26. ..
  27. .Op 1 include/a.out.h
  28. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  29. include/a.out.h    
  30. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  31. 00000 /* The <a.out> header file describes the format of executable files. */
  32. 00001
  33. 00002 #ifndef _AOUT_H
  34. 00003 #define _AOUT_H
  35. 00004
  36. 00005 struct  exec {                  /* a.out header */
  37. 00006   unsigned char a_magic[2];     /* magic number */
  38. 00007   unsigned char a_flags;        /* flags, see below */
  39. 00008   unsigned char a_cpu;          /* cpu id */
  40. 00009   unsigned char a_hdrlen;       /* length of header */
  41. 00010   unsigned char a_unused;       /* reserved for future use */
  42. 00011   unsigned short a_version;     /* version stamp (not used at present) */
  43. 00012   long          a_text;         /* size of text segement in bytes */
  44. 00013   long          a_data;         /* size of data segment in bytes */
  45. 00014   long          a_bss;          /* size of bss segment in bytes */
  46. 00015   long          a_entry;        /* entry point */
  47. 00016   long          a_total;        /* total memory allocated */
  48. 00017   long          a_syms;         /* size of symbol table */
  49. 00018
  50. 00019   /* SHORT FORM ENDS HERE */
  51. 00020   long          a_trsize;       /* text relocation size */
  52. 00021   long          a_drsize;       /* data relocation size */
  53. 00022   long          a_tbase;        /* text relocation base */
  54. 00023   long          a_dbase;        /* data relocation base */
  55. 00024 };
  56. 00025
  57. 00026 #define A_MAGIC0      (unsigned char) 0x01
  58. 00027 #define A_MAGIC1      (unsigned char) 0x03
  59. 00028 #define BADMAG(X)     ((X).a_magic[0] != A_MAGIC0 ||(X).a_magic[1] != A_MAGIC1)
  60. 00029
  61. 00030 /* CPU Id of TARGET machine (byte order coded in low order two bits) */
  62. 00031 #define A_NONE  0x00    /* unknown */
  63. 00032 #define A_I8086 0x04    /* intel i8086/8088 */
  64. 00033 #define A_M68K  0x0B    /* motorola m68000 */
  65. 00034 #define A_NS16K 0x0C    /* national semiconductor 16032 */
  66. 00035 #define A_I80386 0x10   /* intel i80386 */
  67. 00036 #define A_SPARC 0x17    /* Sun SPARC */
  68. 00037
  69. 00038 #define A_BLR(cputype)  ((cputype&0x01)!=0) /* TRUE if bytes left-to-right */
  70. 00039 #define A_WLR(cputype)  ((cputype&0x02)!=0) /* TRUE if words left-to-right */
  71. 00040
  72. 00041 /* Flags. */
  73. 00042 #define A_UZP   0x01    /* unmapped zero page (pages) */
  74. 00043 #define A_PAL   0x02    /* page aligned executable */
  75. 00044 #define A_NSYM  0x04    /* new style symbol table */
  76. 00045 #define A_EXEC  0x10    /* executable */
  77. 00046 #define A_SEP   0x20    /* separate I/D */
  78. 00047 #define A_PURE  0x40    /* pure text */         /* not used */
  79. 00048 #define A_TOVLY 0x80    /* text overlay */      /* not used */
  80. 00049
  81. 00050 /* Offsets of various things. */
  82. 00051 #define A_MINHDR        32
  83. 00052 #define A_TEXTPOS(X)    ((long)(X).a_hdrlen)
  84. 00053 #define A_DATAPOS(X)    (A_TEXTPOS(X) + (X).a_text)
  85. 00054 #define A_HASRELS(X)    ((X).a_hdrlen > (unsigned char) A_MINHDR)
  86. .Ep 2 include/a.out.h
  87. 00055 #define A_HASEXT(X)     ((X).a_hdrlen > (unsigned char) (A_MINHDR +  8))
  88. 00056 #define A_HASLNS(X)     ((X).a_hdrlen > (unsigned char) (A_MINHDR + 16))
  89. 00057 #define A_HASTOFF(X)    ((X).a_hdrlen > (unsigned char) (A_MINHDR + 24))
  90. 00058 #define A_TRELPOS(X)    (A_DATAPOS(X) + (X).a_data)
  91. 00059 #define A_DRELPOS(X)    (A_TRELPOS(X) + (X).a_trsize)
  92. 00060 #define A_SYMPOS(X)     (A_TRELPOS(X) + (A_HASRELS(X) ? 
  93. 00061                         ((X).a_trsize + (X).a_drsize) : 0))
  94. 00062
  95. 00063 struct reloc {
  96. 00064   long r_vaddr;                 /* virtual address of reference */
  97. 00065   unsigned short r_symndx;      /* internal segnum or extern symbol num */
  98. 00066   unsigned short r_type;        /* relocation type */
  99. 00067 };
  100. 00068
  101. 00069 /* r_tyep values: */
  102. 00070 #define R_ABBS          0
  103. 00071 #define R_RELLBYTE      2
  104. 00072 #define R_PCRBYTE       3
  105. 00073 #define R_RELWORD       4
  106. 00074 #define R_PCRWORD       5
  107. 00075 #define R_RELLONG       6
  108. 00076 #define R_PCRLONG       7
  109. 00077 #define R_REL3BYTE      8
  110. 00078 #define R_KBRANCHE      9
  111. 00079
  112. 00080 /* r_symndx for internal segments */
  113. 00081 #define S_ABS           ((unsigned short)-1)
  114. 00082 #define S_TEXT          ((unsigned short)-2)
  115. 00083 #define S_DATA          ((unsigned short)-3)
  116. 00084 #define S_BSS           ((unsigned short)-4)
  117. 00085
  118. 00086 struct nlist {                  /* symbol table entry */
  119. 00087   char n_name[8];               /* symbol name */
  120. 00088   long n_value;                 /* value */
  121. 00089   unsigned char n_sclass;       /* storage class */
  122. 00090   unsigned char n_numaux;       /* number of auxiliary entries (not used) */
  123. 00091   unsigned short n_type;        /* language base and derived type (not used) */
  124. 00092 };
  125. 00093
  126. 00094 /* Low bits of storage class (section). */
  127. 00095 #define N_SECT            07    /* section mask */
  128. 00096 #define N_UNDF            00    /* undefined */
  129. 00097 #define N_ABS             01    /* absolute */
  130. 00098 #define N_TEXT            02    /* text */
  131. 00099 #define N_DATA            03    /* data */
  132. 00100 #define N_BSS             04    /* bss */
  133. 00101 #define N_COMM            05    /* (common) */
  134. 00102
  135. 00103 /* High bits of storage class. */
  136. 00104 #define N_CLASS         0370    /* storage class mask */
  137. 00105 #define C_NULL
  138. 00106 #define C_EXT           0020    /* external symbol */
  139. 00107 #define C_STAT          0030    /* static */
  140. 00108
  141. 00109 /* Function prototypes. */
  142. 00110 #ifndef _ANSI_H
  143. 00111 #include <ansi.h>
  144. 00112 #endif
  145. 00113
  146. 00114 _PROTOTYPE( int nlist, (char *_file, struct nlist *_nl)                 );
  147. .Op 3 include/a.out.h
  148. 00115
  149. 00116 #endif /* _AOUT_H */
  150. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  151. include/alloca.h    
  152. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  153. 00200 /*      alloca.h - The dreaded alloca() function.
  154. 00201  */
  155. 00202
  156. 00203 #ifndef _ALLOCA_H
  157. 00204 #define _ALLOCA_H
  158. 00205
  159. 00206 #if __GNUC__
  160. 00207
  161. 00208 /* The compiler recognizes this special keyword, and inlines the code. */
  162. 00209 #define alloca(size)    __builtin_alloca(size)
  163. 00210
  164. 00211 #endif /* __GCC__ */
  165. 00212
  166. 00213 #if __ACK__ || __CCC__
  167. 00214
  168. 00215 #ifndef _ANSI_H
  169. 00216 #include <ansi.h>
  170. 00217 #endif
  171. 00218
  172. 00219 _PROTOTYPE(void *alloca, (size_t _size)                                 );
  173. 00220
  174. 00221 #endif /* __ACK__ || __CCC__ */
  175. 00222
  176. 00223 #endif /* _ALLOCA_H */
  177. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  178. include/ansi.h    
  179. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  180. 00300 /* The <ansi.h> header attempts to decide whether the compiler has enough
  181. 00301  * conformance to Standard C for Minix to take advantage of.  If so, the
  182. 00302  * symbol _ANSI is defined (as 31415).  Otherwise _ANSI is not defined
  183. 00303  * here, but it may be defined by applications that want to bend the rules.
  184. 00304  * The magic number in the definition is to inhibit unnecessary bending
  185. 00305  * of the rules.  (For consistency with the new '#ifdef _ANSI" tests in
  186. 00306  * the headers, _ANSI should really be defined as nothing, but that would
  187. 00307  * break many library routines that use "#if _ANSI".)
  188. 00308
  189. 00309  * If _ANSI ends up being defined, a macro
  190. 00310  *
  191. 00311  *      _PROTOTYPE(function, params)
  192. 00312  *
  193. 00313  * is defined.  This macro expands in different ways, generating either
  194. 00314  * ANSI Standard C prototypes or old-style K&R (Kernighan & Ritchie)
  195. 00315  * prototypes, as needed.  Finally, some programs use _CONST, _VOIDSTAR etc
  196. 00316  * in such a way that they are portable over both ANSI and K&R compilers.
  197. 00317  * The appropriate macros are defined here.
  198. 00318  */
  199. 00319
  200. .Ep 4 include/ansi.h
  201. 00320 #ifndef _ANSI_H
  202. 00321 #define _ANSI_H
  203. 00322
  204. 00323 #if __STDC__ == 1
  205. 00324 #define _ANSI           31459   /* compiler claims full ANSI conformance */
  206. 00325 #endif
  207. 00326
  208. 00327 #ifdef __GNUC__
  209. 00328 #define _ANSI           31459   /* gcc conforms enough even in non-ANSI mode */
  210. 00329 #endif
  211. 00330
  212. 00331 #ifdef _ANSI
  213. 00332
  214. 00333 /* Keep everything for ANSI prototypes. */
  215. 00334 #define _PROTOTYPE(function, params)    function params
  216. 00335 #define _ARGS(params)                   params
  217. 00336
  218. 00337 #define _VOIDSTAR       void *
  219. 00338 #define _VOID           void
  220. 00339 #define _CONST          const
  221. 00340 #define _VOLATILE       volatile
  222. 00341 #define _SIZET          size_t
  223. 00342
  224. 00343 #else
  225. 00344
  226. 00345 /* Throw away the parameters for K&R prototypes. */
  227. 00346 #define _PROTOTYPE(function, params)    function()
  228. 00347 #define _ARGS(params)                   ()
  229. 00348
  230. 00349 #define _VOIDSTAR       void *
  231. 00350 #define _VOID           void
  232. 00351 #define _CONST
  233. 00352 #define _VOLATILE
  234. 00353 #define _SIZET          int
  235. 00354
  236. 00355 #endif /* _ANSI */
  237. 00356
  238. 00357 #endif /* ANSI_H */
  239. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  240. include/assert.h    
  241. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  242. 00400 /* The <assert.h> header contains a macro called "assert" that allows 
  243. 00401  * programmers to put assertions in the code.  These assertions can be verified
  244. 00402  * at run time.  If an assertion fails, an error message is printed and the
  245. 00403  * program aborts.
  246. 00404  * Assertion checking can be disabled by adding the statement
  247. 00405  *
  248. 00406  *      #define NDEBUG
  249. 00407  *
  250. 00408  * to the program before the 
  251. 00409  *
  252. 00410  *      #include <assert.h>
  253. 00411  *
  254. 00412  * statement.
  255. 00413  */
  256. 00414
  257. .Op 5 include/assert.h
  258. 00415 #undef assert
  259. 00416
  260. 00417 #ifndef _ANSI_H
  261. 00418 #include <ansi.h>
  262. 00419 #endif
  263. 00420
  264. 00421
  265. 00422 #ifdef NDEBUG
  266. 00423 /* Debugging disabled -- do not evaluate assertions. */
  267. 00424 #define assert(expr)  ((void) 0)
  268. 00425 #else
  269. 00426 /* Debugging enabled -- verify assertions at run time. */
  270. 00427 #ifdef _ANSI
  271. 00428 #define __str(x)        # x
  272. 00429 #define __xstr(x)       __str(x)
  273. 00430
  274. 00431 _PROTOTYPE( void __bad_assertion, (const char *_mess) );
  275. 00432 #define assert(expr)    ((expr)? (void)0 : 
  276. 00433                                 __bad_assertion("Assertion "" #expr 
  277. 00434                                     "" failed, file " __xstr(__FILE__) 
  278. 00435                                     ", line " __xstr(__LINE__) "n"))
  279. 00436 #else
  280. 00437 #define assert(expr) ((void) ((expr) ? 0 : __assert( __FILE__,  __LINE__)))
  281. 00438 #endif /* _ANSI */
  282. 00439 #endif
  283. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  284. include/ctype.h    
  285. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  286. 00500 /* The <ctype.h> header file defines some macros used to identify characters.
  287. 00501  * It works by using a table stored in chartab.c. When a character is presented
  288. 00502  * to one of these macros, the character is used as an index into the table
  289. 00503  * (__ctype) to retrieve a byte.  The relevant bit is then extracted.
  290. 00504  */
  291. 00505
  292. 00506 #ifndef _CTYPE_H
  293. 00507 #define _CTYPE_H
  294. 00508
  295. 00509 extern char     __ctype[];      /* property array defined in chartab.c */
  296. 00510
  297. 00511 #define _U              0x01    /* this bit is for upper-case letters [A-Z] */
  298. 00512 #define _L              0x02    /* this bit is for lower-case letters [a-z] */
  299. 00513 #define _N              0x04    /* this bit is for numbers [0-9] */
  300. 00514 #define _S              0x08    /* this bit is for white space t n f etc */
  301. 00515 #define _P              0x10    /* this bit is for punctuation characters */
  302. 00516 #define _C              0x20    /* this bit is for control characters */
  303. 00517 #define _X              0x40    /* this bit is for hex digits [a-f] and [A-F]*/
  304. 00518
  305. 00519 /* Function Prototypes (have to go before the macros). */
  306. 00520 #ifndef _ANSI_H
  307. 00521 #include <ansi.h>
  308. 00522 #endif
  309. 00523
  310. 00524 _PROTOTYPE( int isalnum, (int  _c)  );  /* alphanumeric [a-z], [A-Z], [0-9] */
  311. .Ep 6 include/ctype.h
  312. 00525 _PROTOTYPE( int isalpha, (int  _c)  );  /* alphabetic */
  313. 00526 _PROTOTYPE( int iscntrl, (int  _c)  );  /* control characters */
  314. 00527 _PROTOTYPE( int isdigit, (int  _c)  );  /* digit [0-9] */
  315. 00528 _PROTOTYPE( int isgraph, (int  _c)  );  /* graphic character */
  316. 00529 _PROTOTYPE( int islower, (int  _c)  );  /* lower-case letter [a-z] */
  317. 00530 _PROTOTYPE( int isprint, (int  _c)  );  /* printable character */
  318. 00531 _PROTOTYPE( int ispunct, (int  _c)  );  /* punctuation mark */
  319. 00532 _PROTOTYPE( int isspace, (int  _c)  );  /* white space sp, f, n, r, t, v*/
  320. 00533 _PROTOTYPE( int isupper, (int  _c)  );  /* upper-case letter [A-Z] */
  321. 00534 _PROTOTYPE( int isxdigit,(int  _c)  );  /* hex digit [0-9], [a-f], [A-F] */
  322. 00535 _PROTOTYPE( int tolower, (int  _c)  );  /* convert to lower-case */
  323. 00536 _PROTOTYPE( int toupper, (int  _c)  );  /* convert to upper-case */
  324. 00537
  325. 00538 /* Macros for identifying character classes. */
  326. 00539 #define isalnum(c)      ((__ctype+1)[c]&(_U|_L|_N))
  327. 00540 #define isalpha(c)      ((__ctype+1)[c]&(_U|_L))
  328. 00541 #define iscntrl(c)      ((__ctype+1)[c]&_C)
  329. 00542 #define isgraph(c)      ((__ctype+1)[c]&(_P|_U|_L|_N))
  330. 00543 #define ispunct(c)      ((__ctype+1)[c]&_P)
  331. 00544 #define isspace(c)      ((__ctype+1)[c]&_S)
  332. 00545 #define isxdigit(c)     ((__ctype+1)[c]&(_N|_X))
  333. 00546
  334. 00547 #define isdigit(c)      ((unsigned) ((c)-'0') < 10)
  335. 00548 #define islower(c)      ((unsigned) ((c)-'a') < 26)
  336. 00549 #define isupper(c)      ((unsigned) ((c)-'A') < 26)
  337. 00550 #define isprint(c)      ((unsigned) ((c)-' ') < 95)
  338. 00551 #define isascii(c)      ((unsigned) (c) < 128)
  339. 00552
  340. 00553 #endif /* _CTYPE_H */
  341. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  342. include/curses.h    
  343. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  344. 00600 /* curses.h - defines macros and prototypes for curses */
  345. 00601
  346. 00602 #ifndef _CURSES_H
  347. 00603 #define _CURSES_H
  348. 00604
  349. 00605 #include <termios.h>
  350. 00606 #include <stdarg.h>
  351. 00607 #include <stdio.h>
  352. 00608
  353. 00609 typedef int bool;
  354. 00610
  355. 00611 #ifndef TRUE
  356. 00612 #define TRUE 1
  357. 00613 #endif
  358. 00614 #ifndef FALSE
  359. 00615 #define FALSE 0
  360. 00616 #endif
  361. 00617 #ifndef ERR
  362. 00618 #define ERR (-1)        /* general error flag */
  363. 00619 #endif
  364. 00620 #ifndef OK
  365. 00621 #define OK 0            /* general OK flag */
  366. 00622 #endif
  367. 00623
  368. 00624 /* Macros. */
  369. .Op 7 include/curses.h
  370. 00625 #define box(win,vc,hc) wbox(win,0,0,0,0,vc,hc)
  371. 00626 #define addch(ch) waddch(stdscr,ch)
  372. 00627 #define mvaddch(y,x,ch) (wmove(stdscr,y,x)==ERR?ERR:waddch(stdscr,ch))
  373. 00628 #define mvwaddch(win,y,x,ch) (wmove(win,y,x)==ERR?ERR:waddch(win,ch))
  374. 00629 #define getch() wgetch(stdscr)
  375. 00630 #define mvgetch(y,x) (wmove(stdscr,y,x)==ERR?ERR:wgetch(stdscr))
  376. 00631 #define mvwgetch(win,y,x) (wmove(win,y,x)==ERR?ERR:wgetch(win))
  377. 00632 #define addstr(str) waddstr(stdscr,str)
  378. 00633 #define mvaddstr(y,x,str) (wmove(stdscr,y,x)==ERR?ERR:waddstr(stdscr,str))
  379. 00634 #define mvwaddstr(win,y,x,str) (wmove(win,y,x)==ERR?ERR:waddstr(win,str))
  380. 00635 #define getstr(str) wgetstr(stdscr,str)
  381. 00636 #define mvgetstr(y,x,str) (wmove(stdscr,y,x)==ERR?ERR:wgetstr(stdscr,str))
  382. 00637 #define mvwgetstr(win,y,x,str) (wmove(win,y,x)==ERR?ERR:wgetstr(win,str))
  383. 00638 #define move(y,x) wmove(stdscr,y,x)
  384. 00639 #define clear() wclear(stdscr)
  385. 00640 #define erase() werase(stdscr)
  386. 00641 #define clrtobot() wclrtobot(stdscr)
  387. 00642 #define mvclrtobot(y,x) (wmove(stdscr,y,x)==ERR?ERR:wclrtobot(stdscr))
  388. 00643 #define mvwclrtobot(win,y,x) (wmove(win,y,x)==ERR?ERR:wclrtobot(win))
  389. 00644 #define clrtoeol() wclrtoeol(stdscr)
  390. 00645 #define mvclrtoeol(y,x) (wmove(stdscr,y,x)==ERR?ERR:wclrtoeol(stdscr))
  391. 00646 #define mvwclrtoeol(win,y,x) (wmove(win,y,x)==ERR?ERR:wclrtoeol(win))
  392. 00647 #define insertln() winsertln(stdscr)
  393. 00648 #define mvinsertln(y,x) (wmove(stdscr,y,x)==ERR?ERR:winsertln(stdscr))
  394. 00649 #define mvwinsertln(win,y,x) (wmove(win,y,x)==ERR?ERR:winsertln(win))
  395. 00650 #define deleteln() wdeleteln(stdscr)
  396. 00651 #define mvdeleteln(y,x) (wmove(stdscr,y,x)==ERR?ERR:wdeleteln(stdscr))
  397. 00652 #define mvwdeleteln(win,y,x) (wmove(win,y,x)==ERR?ERR:wdeleteln(win))
  398. 00653 #define refresh() wrefresh(stdscr)
  399. 00654 #define inch() winch(stdscr)
  400. 00655 #define insch(ch) winsch(stdscr,ch)
  401. 00656 #define mvinsch(y,x,ch) (wmove(stdscr,y,x)==ERR?ERR:winsch(stdscr,ch))
  402. 00657 #define mvwinsch(win,y,x,ch) (wmove(win,y,x)==ERR?ERR:winsch(win,ch))
  403. 00658 #define delch() wdelch(stdscr)
  404. 00659 #define mvdelch(y,x) (wmove(stdscr,y,x)==ERR?ERR:wdelch(stdscr))
  405. 00660 #define mvwdelch(win,y,x) (wmove(win,y,x)==ERR?ERR:wdelch(win))
  406. 00661 #define standout() wstandout(stdscr)
  407. 00662 #define wstandout(win) ((win)->_attrs |= A_STANDOUT)
  408. 00663 #define standend() wstandend(stdscr)
  409. 00664 #define wstandend(win) ((win)->_attrs &= ~A_STANDOUT)
  410. 00665 #define attrset(attrs) wattrset(stdscr, attrs)
  411. 00666 #define wattrset(win, attrs) ((win)->_attrs = (attrs))
  412. 00667 #define attron(attrs) wattron(stdscr, attrs)
  413. 00668 #define wattron(win, attrs) ((win)->_attrs |= (attrs))
  414. 00669 #define attroff(attrs) wattroff(stdscr,attrs)
  415. 00670 #define wattroff(win, attrs) ((win)->_attrs &= ~(attrs))
  416. 00671 #define resetty() tcsetattr(1, TCSANOW, &_orig_tty)
  417. 00672 #define getyx(win,y,x) (y = (win)->_cury, x = (win)->_curx)
  418. 00673
  419. 00674 /* Video attribute definitions. */
  420. 00675 #define A_BLINK        0x0100
  421. 00676 #define A_BLANK        0
  422. 00677 #define A_BOLD         0x0200
  423. 00678 #define A_DIM          0
  424. 00679 #define A_PROTECT      0
  425. 00680 #define A_REVERSE      0x0400
  426. 00681 #define A_STANDOUT     0x0800
  427. 00682 #define A_UNDERLINE    0x1000
  428. 00683 #define A_ALTCHARSET   0x2000
  429. 00684
  430. .Ep 8 include/curses.h
  431. 00685 /* Type declarations. */
  432. 00686 typedef struct {
  433. 00687   int      _cury;                       /* current pseudo-cursor */
  434. 00688   int      _curx;
  435. 00689   int      _maxy;                       /* max coordinates */
  436. 00690   int      _maxx;
  437. 00691   int      _begy;                       /* origin on screen */
  438. 00692   int      _begx;
  439. 00693   int      _flags;                      /* window properties */
  440. 00694   int      _attrs;                      /* attributes of written characters */
  441. 00695   int      _tabsize;                    /* tab character size */
  442. 00696   bool     _clear;                      /* causes clear at next refresh */
  443. 00697   bool     _leave;                      /* leaves cursor as it happens */
  444. 00698   bool     _scroll;                     /* allows window scrolling */
  445. 00699   bool     _nodelay;                    /* input character wait flag */
  446. 00700   bool     _keypad;                     /* flags keypad key mode active */
  447. 00701   int    **_line;                       /* pointer to line pointer array */
  448. 00702   int     *_minchng;                    /* First changed character in line */
  449. 00703   int     *_maxchng;                    /* Last changed character in line */
  450. 00704   int      _regtop;                     /* Top/bottom of scrolling region */
  451. 00705   int      _regbottom;
  452. 00706 } WINDOW;
  453. 00707
  454. 00708 /* External variables */
  455. 00709 extern int LINES;                       /* terminal height */
  456. 00710 extern int COLS;                        /* terminal width */
  457. 00711 extern bool NONL;                       /* n causes CR too ? */
  458. 00712 extern WINDOW *curscr;                  /* the current screen image */
  459. 00713 extern WINDOW *stdscr;                  /* the default screen window */
  460. 00714 extern struct termios _orig_tty, _tty;
  461. 00715
  462. 00716 extern unsigned int ACS_ULCORNER;       /* terminal dependent block grafic */
  463. 00717 extern unsigned int ACS_LLCORNER;       /* charcters.  Forget IBM, we are */
  464. 00718 extern unsigned int ACS_URCORNER;       /* independent of their charset. :-) */
  465. 00719 extern unsigned int ACS_LRCORNER;
  466. 00720 extern unsigned int ACS_RTEE;
  467. 00721 extern unsigned int ACS_LTEE;
  468. 00722 extern unsigned int ACS_BTEE;
  469. 00723 extern unsigned int ACS_TTEE;
  470. 00724 extern unsigned int ACS_HLINE;
  471. 00725 extern unsigned int ACS_VLINE;
  472. 00726 extern unsigned int ACS_PLUS;
  473. 00727 extern unsigned int ACS_S1;
  474. 00728 extern unsigned int ACS_S9;
  475. 00729 extern unsigned int ACS_DIAMOND;
  476. 00730 extern unsigned int ACS_CKBOARD;
  477. 00731 extern unsigned int ACS_DEGREE;
  478. 00732 extern unsigned int ACS_PLMINUS;
  479. 00733 extern unsigned int ACS_BULLET;
  480. 00734 extern unsigned int ACS_LARROW;
  481. 00735 extern unsigned int ACS_RARROW;
  482. 00736 extern unsigned int ACS_DARROW;
  483. 00737 extern unsigned int ACS_UARROW;
  484. 00738 extern unsigned int ACS_BOARD;
  485. 00739 extern unsigned int ACS_LANTERN;
  486. 00740 extern unsigned int ACS_BLOCK;
  487. 00741
  488. 00742 _PROTOTYPE( char *unctrl, (int _c) );
  489. 00743 _PROTOTYPE( int baudrate, (void));
  490. 00744 _PROTOTYPE( void beep, (void));
  491. .Op 9 include/curses.h
  492. 00745 _PROTOTYPE( void cbreak, (void));
  493. 00746 _PROTOTYPE( void clearok, (WINDOW *_win, bool _flag) );
  494. 00747 _PROTOTYPE( void clrscr, (void));
  495. 00748 _PROTOTYPE( void curs_set, (int _visibility) );
  496. 00749 _PROTOTYPE( void delwin, (WINDOW *_win) );
  497. 00750 _PROTOTYPE( void doupdate, (void));
  498. 00751 _PROTOTYPE( void echo, (void));
  499. 00752 _PROTOTYPE( int endwin, (void));
  500. 00753 _PROTOTYPE( int erasechar, (void));
  501. 00754 _PROTOTYPE( void fatal, (char *_s) );
  502. 00755 _PROTOTYPE( int fixterm, (void));
  503. 00756 _PROTOTYPE( void flash, (void));
  504. 00757 _PROTOTYPE( void gettmode, (void));
  505. 00758 _PROTOTYPE( void idlok, (WINDOW *_win, bool _flag) );
  506. 00759 _PROTOTYPE( WINDOW *initscr, (void));
  507. 00760 _PROTOTYPE( void keypad, (WINDOW *_win, bool _flag) );
  508. 00761 _PROTOTYPE( int killchar, (void));
  509. 00762 _PROTOTYPE( void leaveok, (WINDOW *_win, bool _flag) );
  510. 00763 _PROTOTYPE( char *longname, (void));
  511. 00764 _PROTOTYPE( void meta, (WINDOW *_win, bool _flag) );
  512. 00765 _PROTOTYPE( int mvcur, (int _oldy, int _oldx, int _newy, int _newx) );
  513. 00766 _PROTOTYPE( int mvinch, (int _y, int _x) );
  514. 00767 _PROTOTYPE( int mvprintw, (int _y, int _x, const char *_fmt, ...) );
  515. 00768 _PROTOTYPE( int mvscanw, (int _y, int _x, const char *_fmt, ...) );
  516. 00769 _PROTOTYPE( int mvwin, (WINDOW *_win, int _begy, int _begx) );
  517. 00770 _PROTOTYPE( int mvwinch, (WINDOW *_win, int _y, int _x) );
  518. 00771 _PROTOTYPE( int mvwprintw, (WINDOW *_win, int _y, int _x, const char *_fmt,
  519. 00772                                                                         ...) );
  520. 00773 _PROTOTYPE( int mvwscanw, (WINDOW *_win, int _y, int _x, const char *_fmt,
  521. 00774                                                                         ...) );
  522. 00775 _PROTOTYPE( WINDOW *newwin, (int _num_lines, int _num_cols, int _y, int _x));
  523. 00776 _PROTOTYPE( void nl, (void));
  524. 00777 _PROTOTYPE( void nocbreak, (void));
  525. 00778 _PROTOTYPE( void nodelay, (WINDOW *_win, bool _flag) );
  526. 00779 _PROTOTYPE( void noecho, (void));
  527. 00780 _PROTOTYPE( void nonl, (void));
  528. 00781 _PROTOTYPE( void noraw, (void));
  529. 00782 _PROTOTYPE( void outc, (int _c) );
  530. 00783 _PROTOTYPE( void  overlay, (WINDOW *_win1, WINDOW *_win2) );
  531. 00784 _PROTOTYPE( void  overwrite, (WINDOW *_win1, WINDOW *_win2) );
  532. 00785 _PROTOTYPE( void poscur, (int _r, int _c) );
  533. 00786 _PROTOTYPE( int printw, (const char *_fmt, ...) );
  534. 00787 _PROTOTYPE( void raw, (void));
  535. 00788 _PROTOTYPE( int resetterm, (void));
  536. 00789 _PROTOTYPE( int saveoldterm, (void));
  537. 00790 _PROTOTYPE( int saveterm, (void));
  538. 00791 _PROTOTYPE( int savetty, (void));
  539. 00792 _PROTOTYPE( int scanw, (const char *_fmt, ...) );
  540. 00793 _PROTOTYPE( void scroll, (WINDOW *_win) );
  541. 00794 _PROTOTYPE( void scrollok, (WINDOW *_win, bool _flag) );
  542. 00795 _PROTOTYPE( int setscrreg, (int _top, int _bottom) );
  543. 00796 _PROTOTYPE( int setterm, (char *_type) );
  544. 00797 _PROTOTYPE( int setupterm, (void));
  545. 00798 _PROTOTYPE( WINDOW *subwin, (WINDOW *_orig, int _nlines, int _ncols, int _y,
  546. 00799                                         int _x));
  547. 00800 _PROTOTYPE( int tabsize, (int _ts) );
  548. 00801 _PROTOTYPE( void touchwin, (WINDOW *_win) );
  549. 00802 _PROTOTYPE( int waddch, (WINDOW *_win, int _c) );
  550. 00803 _PROTOTYPE( int waddstr, (WINDOW *_win, char *_str) );
  551. 00804 _PROTOTYPE( int wbox, (WINDOW *_win, int _ymin, int _xmin, int _ymax,
  552. .Ep 10 include/curses.h
  553. 00805                                 int _xmax, unsigned int _v, unsigned int _h) );
  554. 00806 _PROTOTYPE( void wclear, (WINDOW *_win) );
  555. 00807 _PROTOTYPE( int wclrtobot, (WINDOW *_win) );
  556. 00808 _PROTOTYPE( int wclrtoeol, (WINDOW *_win) );
  557. 00809 _PROTOTYPE( int wdelch, (WINDOW *_win) );
  558. 00810 _PROTOTYPE( int wdeleteln, (WINDOW *_win) );
  559. 00811 _PROTOTYPE( void werase, (WINDOW *_win) );
  560. 00812 _PROTOTYPE( int wgetch, (WINDOW *_win) );
  561. 00813 _PROTOTYPE( int wgetstr, (WINDOW *_win, char *_str) );
  562. 00814 _PROTOTYPE( int winch, (WINDOW *_win) );
  563. 00815 _PROTOTYPE( int winsch, (WINDOW *_win, int _c) );
  564. 00816 _PROTOTYPE( int winsertln, (WINDOW *_win) );
  565. 00817 _PROTOTYPE( int wmove, (WINDOW *_win, int _y, int _x) );
  566. 00818 _PROTOTYPE( void wnoutrefresh, (WINDOW *_win) );
  567. 00819 _PROTOTYPE( int wprintw, (WINDOW *_win, const char *_fmt, ...));
  568. 00820 _PROTOTYPE( void wrefresh, (WINDOW *_win) );
  569. 00821 _PROTOTYPE( int wscanw, (WINDOW *_win, const char *_fmt, ...));
  570. 00822 _PROTOTYPE( int wsetscrreg, (WINDOW *_win, int _top, int _bottom) );
  571. 00823 _PROTOTYPE( int wtabsize, (WINDOW *_win, int _ts) );
  572. 00824
  573. 00825 #endif /* _CURSES_H */
  574. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  575. include/dirent.h    
  576. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  577. 00900 /*      dirent.h - Declarations for directory reading routines.
  578. 00901  *                                                      Author: Kees J. Bot
  579. 00902  *                                                              24 Apr 1989
  580. 00903  * 
  581. 00904  * Note: The V7 format directory entries used under Minix must be transformed
  582. 00905  * into a struct dirent with a d_name of at least 15 characters.  Given that
  583. 00906  * we have to transform V7 entries anyhow it is little trouble to let the
  584. 00907  * routines understand the so-called "flex" directory format too.
  585. 00908  */
  586. 00909
  587. 00910 #ifndef _DIRENT_H
  588. 00911 #define _DIRENT_H
  589. 00912
  590. 00913 /* _fl_direct is a flexible directory entry.  Actually it's a union of 8
  591. 00914  * characters and the 3 fields defined below. 
  592. 00915  */
  593. 00916
  594. 00917 /* Flexible directory entry: */
  595. 00918 struct _fl_direct {             /* First slot in an entry */
  596. 00919         ino_t           d_ino;
  597. 00920         unsigned char   d_extent;
  598. 00921         char            d_name[5];  /* Four characters for the shortest name */
  599. 00922 };
  600. 00923
  601. 00924         /* Name of length len needs _EXTENT(len) extra slots. */
  602. 00925 #define _EXTENT(len)    (((len) + 3) >> 3)
  603. 00926
  604. 00927 /* Version 7 directory entry: */
  605. 00928 struct _v7_direct {             
  606. 00929         ino_t           d_ino;
  607. .Op 11 include/dirent.h
  608. 00930         char            d_name[14];
  609. 00931 };
  610. 00932
  611. 00933 /* Definitions for the directory(3) routines: */
  612. 00934 typedef struct {
  613. 00935         char            _fd;    /* Filedescriptor of open directory */
  614. 00936         char            _v7;    /* Directory is Version 7 */
  615. 00937         short           _count; /* This many objects in buf */
  616. 00938         off_t           _pos;   /* Position in directory file */
  617. 00939         struct _fl_direct  *_ptr;       /* Next slot in buf */
  618. 00940         struct _fl_direct  _buf[128];   /* One block of a directory file */
  619. 00941         struct _fl_direct  _v7f[3];     /* V7 entry transformed to flex */
  620. 00942 } DIR;
  621. 00943
  622. 00944 struct dirent {         /* Largest entry (8 slots) */
  623. 00945         ino_t           d_ino;          /* I-node number */
  624. 00946         unsigned char   d_extent;       /* Extended with this many slots */
  625. 00947         char            d_name[61];     /* Null terminated name */
  626. 00948 };
  627. 00949
  628. 00950 /* Function Prototypes. */
  629. 00951 #ifndef _ANSI_H
  630. 00952 #include <ansi.h>
  631. 00953 #endif
  632. 00954
  633. 00955 _PROTOTYPE( int closedir, (DIR *_dirp)                                  );
  634. 00956 _PROTOTYPE( DIR *opendir, (const char *_dirname)                        );
  635. 00957 _PROTOTYPE( struct dirent *readdir, (DIR *_dirp)                        );
  636. 00958 _PROTOTYPE( void rewinddir, (DIR *_dirp)                                );
  637. 00959
  638. 00960 #ifdef _MINIX
  639. 00961 _PROTOTYPE( int seekdir, (DIR *_dirp, off_t _loc)                       );
  640. 00962 _PROTOTYPE( off_t telldir, (DIR *_dirp)                                 );
  641. 00963 #endif
  642. 00964
  643. 00965 #endif /* _DIRENT_H */
  644. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  645. include/errno.h    
  646. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  647. 01000 /* The <errno.h> header defines the numbers of the various errors that can
  648. 01001  * occur during program execution.  They are visible to user programs and 
  649. 01002  * should be small positive integers.  However, they are also used within 
  650. 01003  * MINIX, where they must be negative.  For example, the READ system call is 
  651. 01004  * executed internally by calling do_read().  This function returns either a 
  652. 01005  * (negative) error number or a (positive) number of bytes actually read.
  653. 01006  *
  654. 01007  * To solve the problem of having the error numbers be negative inside the
  655. 01008  * the system and positive outside, the following mechanism is used.  All the
  656. 01009  * definitions are are the form:
  657. 01010  *
  658. 01011  *      #define EPERM           (_SIGN 1)
  659. 01012  *
  660. 01013  * If the macro _SYSTEM is defined, then  _SIGN is set to "-", otherwise it is
  661. 01014  * set to "".  Thus when compiling the operating system, the  macro _SYSTEM
  662. .Ep 12 include/errno.h
  663. 01015  * will be defined, setting EPERM to (- 1), whereas when when this
  664. 01016  * file is included in an ordinary user program, EPERM has the value ( 1).
  665. 01017  */
  666. 01018
  667. 01019 #ifndef _ERRNO_H                /* check if <errno.h> is already included */
  668. 01020 #define _ERRNO_H                /* it is not included; note that fact */
  669. 01021
  670. 01022 /* Now define _SIGN as "" or "-" depending on _SYSTEM. */
  671. 01023 #ifdef _SYSTEM
  672. 01024 #   define _SIGN         -
  673. 01025 #   define OK            0
  674. 01026 #else
  675. 01027 #   define _SIGN         
  676. 01028 #endif
  677. 01029
  678. 01030 extern int errno;                 /* place where the error numbers go */
  679. 01031
  680. 01032 /* Here are the numerical values of the error numbers. */
  681. 01033 #define _NERROR               70  /* number of errors */  
  682. 01034
  683. 01035 #define EGENERIC      (_SIGN 99)  /* generic error */
  684. 01036 #define EPERM         (_SIGN  1)  /* operation not permitted */
  685. 01037 #define ENOENT        (_SIGN  2)  /* no such file or directory */
  686. 01038 #define ESRCH         (_SIGN  3)  /* no such process */
  687. 01039 #define EINTR         (_SIGN  4)  /* interrupted function call */
  688. 01040 #define EIO           (_SIGN  5)  /* input/output error */
  689. 01041 #define ENXIO         (_SIGN  6)  /* no such device or address */
  690. 01042 #define E2BIG         (_SIGN  7)  /* arg list too long */
  691. 01043 #define ENOEXEC       (_SIGN  8)  /* exec format error */
  692. 01044 #define EBADF         (_SIGN  9)  /* bad file descriptor */
  693. 01045 #define ECHILD        (_SIGN 10)  /* no child process */
  694. 01046 #define EAGAIN        (_SIGN 11)  /* resource temporarily unavailable */
  695. 01047 #define ENOMEM        (_SIGN 12)  /* not enough space */
  696. 01048 #define EACCES        (_SIGN 13)  /* permission denied */
  697. 01049 #define EFAULT        (_SIGN 14)  /* bad address */
  698. 01050 #define ENOTBLK       (_SIGN 15)  /* Extension: not a block special file */
  699. 01051 #define EBUSY         (_SIGN 16)  /* resource busy */
  700. 01052 #define EEXIST        (_SIGN 17)  /* file exists */
  701. 01053 #define EXDEV         (_SIGN 18)  /* improper link */
  702. 01054 #define ENODEV        (_SIGN 19)  /* no such device */
  703. 01055 #define ENOTDIR       (_SIGN 20)  /* not a directory */
  704. 01056 #define EISDIR        (_SIGN 21)  /* is a directory */
  705. 01057 #define EINVAL        (_SIGN 22)  /* invalid argument */
  706. 01058 #define ENFILE        (_SIGN 23)  /* too many open files in system */
  707. 01059 #define EMFILE        (_SIGN 24)  /* too many open files */
  708. 01060 #define ENOTTY        (_SIGN 25)  /* inappropriate I/O control operation */
  709. 01061 #define ETXTBSY       (_SIGN 26)  /* no longer used */
  710. 01062 #define EFBIG         (_SIGN 27)  /* file too large */
  711. 01063 #define ENOSPC        (_SIGN 28)  /* no space left on device */
  712. 01064 #define ESPIPE        (_SIGN 29)  /* invalid seek */
  713. 01065 #define EROFS         (_SIGN 30)  /* read-only file system */
  714. 01066 #define EMLINK        (_SIGN 31)  /* too many links */
  715. 01067 #define EPIPE         (_SIGN 32)  /* broken pipe */
  716. 01068 #define EDOM          (_SIGN 33)  /* domain error       (from ANSI C std) */
  717. 01069 #define ERANGE        (_SIGN 34)  /* result too large   (from ANSI C std) */
  718. 01070 #define EDEADLK       (_SIGN 35)  /* resource deadlock avoided */
  719. 01071 #define ENAMETOOLONG  (_SIGN 36)  /* file name too long */
  720. 01072 #define ENOLCK        (_SIGN 37)  /* no locks available */
  721. 01073 #define ENOSYS        (_SIGN 38)  /* function not implemented */
  722. 01074 #define ENOTEMPTY     (_SIGN 39)  /* directory not empty */
  723. .Op 13 include/errno.h
  724. 01075
  725. 01076 /* The following errors relate to networking. */
  726. 01077 #define EPACKSIZE     (_SIGN 50)  /* invalid packet size for some protocol */
  727. 01078 #define EOUTOFBUFS    (_SIGN 51)  /* not enough buffers left */
  728. 01079 #define EBADIOCTL     (_SIGN 52)  /* illegal ioctl for device */
  729. 01080 #define EBADMODE      (_SIGN 53)  /* badmode in ioctl */
  730. 01081 #define EWOULDBLOCK   (_SIGN 54)
  731. 01082 #define EBADDEST      (_SIGN 55)  /* not a valid destination address */
  732. 01083 #define EDSTNOTRCH    (_SIGN 56)  /* destination not reachable */
  733. 01084 #define EISCONN       (_SIGN 57)  /* all ready connected */
  734. 01085 #define EADDRINUSE    (_SIGN 58)  /* address in use */
  735. 01086 #define ECONNREFUSED  (_SIGN 59)  /* connection refused */
  736. 01087 #define ECONNRESET    (_SIGN 60)  /* connection reset */
  737. 01088 #define ETIMEDOUT     (_SIGN 61)  /* connection timed out */
  738. 01089 #define EURG          (_SIGN 62)  /* urgent data present */
  739. 01090 #define ENOURG        (_SIGN 63)  /* no urgent data present */
  740. 01091 #define ENOTCONN      (_SIGN 64)  /* no connection (yet or anymore) */
  741. 01092 #define ESHUTDOWN     (_SIGN 65)  /* a write call to a shutdown connection */
  742. 01093 #define ENOCONN       (_SIGN 66)  /* no such connection */
  743. 01094
  744. 01095 /* The following are not POSIX errors, but they can still happen. */
  745. 01096 #define ELOCKED      (_SIGN 101)  /* can't send message */
  746. 01097 #define EBADCALL     (_SIGN 102)  /* error on send/receive */
  747. 01098
  748. 01099 /* The following error codes are generated by the kernel itself. */
  749. 01100 #ifdef _SYSTEM
  750. 01101 #define E_BAD_DEST     -1001    /* destination address illegal */
  751. 01102 #define E_BAD_SRC      -1002    /* source address illegal */
  752. 01103 #define E_TRY_AGAIN    -1003    /* can't send-- tables full */
  753. 01104 #define E_OVERRUN      -1004    /* interrupt for task that is not waiting */
  754. 01105 #define E_BAD_BUF      -1005    /* message buf outside caller's addr space */
  755. 01106 #define E_TASK         -1006    /* can't send to task */
  756. 01107 #define E_NO_MESSAGE   -1007    /* RECEIVE failed: no message present */
  757. 01108 #define E_NO_PERM      -1008    /* ordinary users can't send to tasks */
  758. 01109 #define E_BAD_FCN      -1009    /* only valid fcns are SEND, RECEIVE, BOTH */
  759. 01110 #define E_BAD_ADDR     -1010    /* bad address given to utility routine */
  760. 01111 #define E_BAD_PROC     -1011    /* bad proc number given to utility */
  761. 01112 #endif /* _SYSTEM */
  762. 01113
  763. 01114 #endif /* _ERRNO_H */
  764. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  765. include/fcntl.h    
  766. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  767. 01200 /* The <fcntl.h> header is needed by the open() and fcntl() system calls,
  768. 01201  * which  have a variety of parameters and flags.  They are described here.  
  769. 01202  * The formats of the calls to each of these are:
  770. 01203  *
  771. 01204  *      open(path, oflag [,mode])       open a file
  772. 01205  *      fcntl(fd, cmd [,arg])           get or set file attributes
  773. 01206  * 
  774. 01207  */
  775. 01208
  776. 01209 #ifndef _FCNTL_H
  777. .Ep 14 include/fcntl.h
  778. 01210 #define _FCNTL_H
  779. 01211
  780. 01212 /* These values are used for cmd in fcntl().  POSIX Table 6-1.  */
  781. 01213 #define F_DUPFD            0    /* duplicate file descriptor */
  782. 01214 #define F_GETFD            1    /* get file descriptor flags */
  783. 01215 #define F_SETFD            2    /* set file descriptor flags */
  784. 01216 #define F_GETFL            3    /* get file status flags */
  785. 01217 #define F_SETFL            4    /* set file status flags */
  786. 01218 #define F_GETLK            5    /* get record locking information */
  787. 01219 #define F_SETLK            6    /* set record locking information */
  788. 01220 #define F_SETLKW           7    /* set record locking info; wait if blocked */
  789. 01221
  790. 01222 /* File descriptor flags used for fcntl().  POSIX Table 6-2. */
  791. 01223 #define FD_CLOEXEC         1    /* close on exec flag for third arg of fcntl */
  792. 01224
  793. 01225 /* L_type values for record locking with fcntl().  POSIX Table 6-3. */
  794. 01226 #define F_RDLCK            1    /* shared or read lock */
  795. 01227 #define F_WRLCK            2    /* exclusive or write lock */
  796. 01228 #define F_UNLCK            3    /* unlock */
  797. 01229
  798. 01230 /* Oflag values for open().  POSIX Table 6-4. */
  799. 01231 #define O_CREAT        00100    /* creat file if it doesn't exist */
  800. 01232 #define O_EXCL         00200    /* exclusive use flag */
  801. 01233 #define O_NOCTTY       00400    /* do not assign a controlling terminal */
  802. 01234 #define O_TRUNC        01000    /* truncate flag */
  803. 01235
  804. 01236 /* File status flags for open() and fcntl().  POSIX Table 6-5. */
  805. 01237 #define O_APPEND       02000    /* set append mode */
  806. 01238 #define O_NONBLOCK     04000    /* no delay */
  807. 01239
  808. 01240 /* File access modes for open() and fcntl().  POSIX Table 6-6. */
  809. 01241 #define O_RDONLY           0    /* open(name, O_RDONLY) opens read only */
  810. 01242 #define O_WRONLY           1    /* open(name, O_WRONLY) opens write only */
  811. 01243 #define O_RDWR             2    /* open(name, O_RDWR) opens read/write */
  812. 01244
  813. 01245 /* Mask for use with file access modes.  POSIX Table 6-7. */
  814. 01246 #define O_ACCMODE         03    /* mask for file access modes */
  815. 01247
  816. 01248 /* Struct used for locking.  POSIX Table 6-8. */
  817. 01249 struct flock {
  818. 01250   short l_type;                 /* type: F_RDLCK, F_WRLCK, or F_UNLCK */
  819. 01251   short l_whence;               /* flag for starting offset */
  820. 01252   off_t l_start;                /* relative offset in bytes */
  821. 01253   off_t l_len;                  /* size; if 0, then until EOF */
  822. 01254   pid_t l_pid;                  /* process id of the locks' owner */
  823. 01255 };
  824. 01256
  825. 01257
  826. 01258 /* Function Prototypes. */
  827. 01259 #ifndef _ANSI_H
  828. 01260 #include <ansi.h>
  829. 01261 #endif
  830. 01262
  831. 01263 _PROTOTYPE( int creat, (const char *_path, Mode_t _mode)                );
  832. 01264 _PROTOTYPE( int fcntl, (int _filedes, int _cmd, ...)                    );
  833. 01265 _PROTOTYPE( int open,  (const char *_path, int _oflag, ...)             );
  834. 01266
  835. 01267 #endif /* _FCNTL_H */
  836. .Op 15 include/float.h
  837. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  838. include/float.h    
  839. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  840. 01300 /* The <float.h> header defines some implementation limits for (IEEE) floating
  841. 01301  * point. Application programs can use it to find out how big and small 
  842. 01302  * floating-point numbers can be, what epsilon to use for iteration, etc.
  843. 01303  */
  844. 01304
  845. 01305 #ifndef _FLOAT_H
  846. 01306 #define _FLOAT_H
  847. 01307
  848. 01308 #define FLT_DIG                 6
  849. 01309 #define FLT_EPSILON             1.19209290e-07F
  850. 01310 #define FLT_MANT_DIG            24
  851. 01311 #define FLT_MAX                 3.40282347e+38F
  852. 01312 #define FLT_MAX_10_EXP          38
  853. 01313 #define FLT_MAX_EXP             128
  854. 01314 #define FLT_MIN                 1.17549435e-38F
  855. 01315 #define FLT_MIN_10_EXP          -37
  856. 01316 #define FLT_MIN_EXP             -125
  857. 01317
  858. 01318 #define DBL_DIG                 15
  859. 01319 #define DBL_EPSILON             2.2204460492503131e-16
  860. 01320 #define DBL_MANT_DIG            53
  861. 01321 #define DBL_MAX                 1.7976931348623157e+308
  862. 01322 #define DBL_MAX_10_EXP          308
  863. 01323 #define DBL_MAX_EXP             1024
  864. 01324 #define DBL_MIN                 2.2250738585072014e-308
  865. 01325 #define DBL_MIN_10_EXP          -307
  866. 01326 #define DBL_MIN_EXP             -1021
  867. 01327
  868. 01328 #define LDBL_DIG                15
  869. 01329 #define LDBL_EPSILON            2.2204460492503131e-16L
  870. 01330 #define LDBL_MANT_DIG           53
  871. 01331 #define LDBL_MAX                1.7976931348623157e+308L
  872. 01332 #define LDBL_MAX_10_EXP         308
  873. 01333 #define LDBL_MAX_EXP            1024
  874. 01334 #define LDBL_MIN                2.2250738585072014e-308L
  875. 01335 #define LDBL_MIN_10_EXP         -307
  876. 01336 #define LDBL_MIN_EXP            -1021
  877. 01337
  878. 01338 #define FLT_ROUNDS              1
  879. 01339 #define FLT_RADIX               2
  880. 01340
  881. 01341 #endif /* _FLOAT_H */
  882. .Ep 16 include/grp.h
  883. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  884. include/grp.h    
  885. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  886. 01400 /* The <grp.h> header is used for the getgrid() and getgrnam() calls. */
  887. 01401
  888. 01402 #ifndef _GRP_H
  889. 01403 #define _GRP_H
  890. 01404
  891. 01405 struct  group { 
  892. 01406   char *gr_name;                /* the name of the group */
  893. 01407   char *gr_passwd;              /* the group passwd */
  894. 01408   gid_t gr_gid;                 /* the numerical group ID */
  895. 01409   char **gr_mem;                /* a vector of pointers to the members */
  896. 01410 };
  897. 01411
  898. 01412 /* Function Prototypes. */
  899. 01413 #ifndef _ANSI_H
  900. 01414 #include <ansi.h>
  901. 01415 #endif
  902. 01416
  903. 01417 _PROTOTYPE( struct group *getgrgid, (Gid_t _gid)                        );
  904. 01418 _PROTOTYPE( struct group *getgrnam, (const char *_name)                 );
  905. 01419
  906. 01420 #ifdef _MINIX
  907. 01421 _PROTOTYPE( void endgrent, (void)                                       );
  908. 01422 _PROTOTYPE( struct group *getgrent, (void)                              );
  909. 01423 _PROTOTYPE( int setgrent, (void)                                        );
  910. 01424 _PROTOTYPE( void setgrfile, (const char *_file)                         );
  911. 01425 #endif
  912. 01426
  913. 01427 #endif /* _GRP_H */
  914. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  915. include/lib.h    
  916. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  917. 01500 /* The <lib.h> header is the master header used by the library.
  918. 01501  * All the C files in the lib subdirectories include it.
  919. 01502  */
  920. 01503
  921. 01504 #ifndef _LIB_H
  922. 01505 #define _LIB_H
  923. 01506
  924. 01507 /* First come the defines. */
  925. 01508 #define _POSIX_SOURCE      1    /* tell headers to include POSIX stuff */
  926. 01509 #define _MINIX             1    /* tell headers to include MINIX stuff */
  927. 01510
  928. 01511 /* The following are so basic, all the lib files get them automatically. */
  929. 01512 #include <minix/config.h>       /* must be first */
  930. 01513 #include <sys/types.h>
  931. 01514 #include <limits.h>
  932. 01515 #include <errno.h>
  933. 01516 #include <ansi.h>
  934. 01517
  935. 01518 #include <minix/const.h>
  936. 01519 #include <minix/type.h>
  937. .Op 17 include/lib.h
  938. 01520 #include <minix/callnr.h>
  939. 01521
  940. 01522 #define MM                 0
  941. 01523 #define FS                 1
  942. 01524
  943. 01525 _PROTOTYPE( int __execve, (const char *_path, char *const _argv[], 
  944. 01526                         char *const _envp[], int _nargs, int _nenvps)   );
  945. 01527 _PROTOTYPE( int _syscall, (int _who, int _syscallnr, message *_msgptr)  );
  946. 01528 _PROTOTYPE( void _loadname, (const char *_name, message *_msgptr)       );
  947. 01529 _PROTOTYPE( int _len, (const char *_s)                                  );
  948. 01530 _PROTOTYPE( void panic, (const char *_message, int _errnum)             );
  949. 01531 _PROTOTYPE( int _sendrec, (int _src_dest, message *_m_ptr)              );
  950. 01532 _PROTOTYPE( void _begsig, (int _dummy)                                  );
  951. 01533
  952. 01534 #endif /* _LIB_H */
  953. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  954. include/limits.h    
  955. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  956. 01600 /* The <limits.h> header defines some basic sizes, both of the language types 
  957. 01601  * (e.g., the number of bits in an integer), and of the operating system (e.g.
  958. 01602  * the number of characters in a file name.
  959. 01603  */
  960. 01604
  961. 01605 #ifndef _LIMITS_H
  962. 01606 #define _LIMITS_H
  963. 01607
  964. 01608 /* Definitions about chars (8 bits in MINIX, and signed). */
  965. 01609 #define CHAR_BIT           8    /* # bits in a char */
  966. 01610 #define CHAR_MIN        -128    /* minimum value of a char */
  967. 01611 #define CHAR_MAX         127    /* maximum value of a char */
  968. 01612 #define SCHAR_MIN       -128    /* minimum value of a signed char */
  969. 01613 #define SCHAR_MAX        127    /* maximum value of a signed char */
  970. 01614 #define UCHAR_MAX        255    /* maximum value of an unsigned char */
  971. 01615 #define MB_LEN_MAX         1    /* maximum length of a multibyte char */
  972. 01616
  973. 01617 /* Definitions about shorts (16 bits in MINIX). */
  974. 01618 #define SHRT_MIN  (-32767-1)    /* minimum value of a short */
  975. 01619 #define SHRT_MAX       32767    /* maximum value of a short */
  976. 01620 #define USHRT_MAX     0xFFFF    /* maximum value of unsigned short */
  977. 01621
  978. 01622 /* _EM_WSIZE is a compiler-generated symbol giving the word size in bytes. */
  979. 01623 #if _EM_WSIZE == 2
  980. 01624 #define INT_MIN   (-32767-1)    /* minimum value of a 16-bit int */
  981. 01625 #define INT_MAX        32767    /* maximum value of a 16-bit int */
  982. 01626 #define UINT_MAX      0xFFFF    /* maximum value of an unsigned 16-bit int */
  983. 01627 #endif
  984. 01628
  985. 01629 #if _EM_WSIZE == 4
  986. 01630 #define INT_MIN (-2147483647-1) /* minimum value of a 32-bit int */
  987. 01631 #define INT_MAX   2147483647    /* maximum value of a 32-bit int */
  988. 01632 #define UINT_MAX  0xFFFFFFFF    /* maximum value of an unsigned 32-bit int */
  989. 01633 #endif
  990. 01634
  991. .Ep 18 include/limits.h
  992. 01635 /*Definitions about longs (32 bits in MINIX). */
  993. 01636 #define LONG_MIN (-2147483647L-1)/* minimum value of a long */
  994. 01637 #define LONG_MAX  2147483647L   /* maximum value of a long */
  995. 01638 #define ULONG_MAX 0xFFFFFFFFL   /* maximum value of an unsigned long */
  996. 01639
  997. 01640 /* Minimum sizes required by the POSIX P1003.1 standard (Table 2-3). */
  998. 01641 #ifdef _POSIX_SOURCE            /* these are only visible for POSIX */
  999. 01642 #define _POSIX_ARG_MAX    4096  /* exec() may have 4K worth of args */
  1000. 01643 #define _POSIX_CHILD_MAX     6  /* a process may have 6 children */
  1001. 01644 #define _POSIX_LINK_MAX      8  /* a file may have 8 links */
  1002. 01645 #define _POSIX_MAX_CANON   255  /* size of the canonical input queue */
  1003. 01646 #define _POSIX_MAX_INPUT   255  /* you can type 255 chars ahead */
  1004. 01647 #define _POSIX_NAME_MAX     14  /* a file name may have 14 chars */
  1005. 01648 #define _POSIX_NGROUPS_MAX   0  /* supplementary group IDs are optional */
  1006. 01649 #define _POSIX_OPEN_MAX     16  /* a process may have 16 files open */
  1007. 01650 #define _POSIX_PATH_MAX    255  /* a pathname may contain 255 chars */
  1008. 01651 #define _POSIX_PIPE_BUF    512  /* pipes writes of 512 bytes must be atomic */
  1009. 01652 #define _POSIX_STREAM_MAX    8  /* at least 8 FILEs can be open at once */
  1010. 01653 #define _POSIX_TZNAME_MAX    3  /* time zone names can be at least 3 chars */
  1011. 01654 #define _POSIX_SSIZE_MAX 32767  /* read() must support 32767 byte reads */
  1012. 01655
  1013. 01656 /* Values actually implemented by MINIX (Tables 2-4, 2-5, 2-6, and 2-7). */
  1014. 01657 /* Some of these old names had better be defined when not POSIX. */
  1015. 01658 #define _NO_LIMIT        100    /* arbitrary number; limit not enforced */
  1016. 01659
  1017. 01660 #define NGROUPS_MAX        0    /* supplemental group IDs not available */
  1018. 01661 #if _EM_WSIZE > 2
  1019. 01662 #define ARG_MAX        16384    /* # bytes of args + environ for exec() */
  1020. 01663 #else
  1021. 01664 #define ARG_MAX         4096    /* args + environ on small machines */
  1022. 01665 #endif
  1023. 01666 #define CHILD_MAX  _NO_LIMIT    /* MINIX does not limit children */
  1024. 01667 #define OPEN_MAX          20    /* # open files a process may have */
  1025. 01668 #define LINK_MAX         127    /* # links a file may have */
  1026. 01669 #define MAX_CANON        255    /* size of the canonical input queue */
  1027. 01670 #define MAX_INPUT        255    /* size of the type-ahead buffer */
  1028. 01671 #define NAME_MAX          14    /* # chars in a file name */
  1029. 01672 #define PATH_MAX         255    /* # chars in a path name */
  1030. 01673 #define PIPE_BUF        7168    /* # bytes in atomic write to a pipe */
  1031. 01674 #define STREAM_MAX        20    /* must be the same as FOPEN_MAX in stdio.h */
  1032. 01675 #define TZNAME_MAX         3    /* maximum bytes in a time zone name is 3 */
  1033. 01676 #define SSIZE_MAX      32767    /* max defined byte count for read() */
  1034. 01677
  1035. 01678 #endif /* _POSIX_SOURCE */
  1036. 01679
  1037. 01680 #endif /* _LIMITS_H */
  1038. .Op 19 include/locale.h
  1039. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1040. include/locale.h    
  1041. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1042. 01700 /* The <locale.h> header is used to custom tailor currency symbols, decimal 
  1043. 01701  * points, and other items to the local style.  It is ANSI's attempt at 
  1044. 01702  * avoiding cultural imperialism.  The locale given below is for C.
  1045. 01703  */
  1046. 01704
  1047. 01705 #ifndef _LOCALE_H
  1048. 01706 #define _LOCALE_H
  1049. 01707
  1050. 01708 struct lconv {
  1051. 01709   char *decimal_point;          /* "." */
  1052. 01710   char *thousands_sep;          /* ""  */
  1053. 01711   char *grouping;               /* ""  */
  1054. 01712   char *int_curr_symbol;        /* ""  */
  1055. 01713   char *currency_symbol;        /* ""  */
  1056. 01714   char *mon_decimal_point;      /* ""  */
  1057. 01715   char *mon_thousands_sep;      /* ""  */
  1058. 01716   char *mon_grouping;           /* ""  */
  1059. 01717   char *positive_sign;          /* ""  */
  1060. 01718   char *negative_sign;          /* ""  */
  1061. 01719   char int_frac_digits;         /* CHAR_MAX */
  1062. 01720   char frac_digits;             /* CHAR_MAX */
  1063. 01721   char p_cs_precedes;           /* CHAR_MAX */
  1064. 01722   char p_sep_by_space;          /* CHAR_MAX */
  1065. 01723   char n_cs_precedes;           /* CHAR_MAX */
  1066. 01724   char n_sep_by_space;          /* CHAR_MAX */
  1067. 01725   char p_sign_posn;             /* CHAR_MAX */
  1068. 01726   char n_sign_posn;             /* CHAR_MAX */
  1069. 01727 };
  1070. 01728
  1071. 01729 #define NULL    ((void *)0)
  1072. 01730
  1073. 01731 #define LC_ALL             1
  1074. 01732 #define LC_COLLATE         2
  1075. 01733 #define LC_CTYPE           3
  1076. 01734 #define LC_MONETARY        4
  1077. 01735 #define LC_NUMERIC         5
  1078. 01736 #define LC_TIME            6
  1079. 01737
  1080. 01738 /* Function Prototypes. */
  1081. 01739 #ifndef _ANSI_H
  1082. 01740 #include <ansi.h>
  1083. 01741 #endif
  1084. 01742
  1085. 01743 _PROTOTYPE( char *setlocale, (int _category, const char *_locale)       );
  1086. 01744 _PROTOTYPE( struct lconv *localeconv, (void)                            );
  1087. 01745
  1088. 01746 #endif /* _LOCALE_H */
  1089. .Ep 20 include/math.h
  1090. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1091. include/math.h    
  1092. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1093. 01800 /* The <math.h> header contains prototypes for mathematical functions. */
  1094. 01801
  1095. 01802 #ifndef _MATH_H
  1096. 01803 #define _MATH_H
  1097. 01804
  1098. 01805 #define HUGE_VAL        (__huge_val())          /* may be infinity */
  1099. 01806
  1100. 01807 /* Function Prototypes. */
  1101. 01808 #ifndef _ANSI_H
  1102. 01809 #include <ansi.h>
  1103. 01810 #endif
  1104. 01811
  1105. 01812 _PROTOTYPE( double __huge_val,  (void)                                  );
  1106. 01813 _PROTOTYPE( int __IsNan,        (double _x)                             );
  1107. 01814
  1108. 01815 _PROTOTYPE( double acos,  (double _x)                                   );
  1109. 01816 _PROTOTYPE( double asin,  (double _x)                                   );
  1110. 01817 _PROTOTYPE( double atan,  (double _x)                                   );
  1111. 01818 _PROTOTYPE( double atan2, (double _y, double _x)                        );
  1112. 01819 _PROTOTYPE( double ceil,  (double _x)                                   );
  1113. 01820 _PROTOTYPE( double cos,   (double _x)                                   );
  1114. 01821 _PROTOTYPE( double cosh,  (double _x)                                   );
  1115. 01822 _PROTOTYPE( double exp,   (double _x)                                   );
  1116. 01823 _PROTOTYPE( double fabs,  (double _x)                                   );
  1117. 01824 _PROTOTYPE( double floor, (double _x)                                   );
  1118. 01825 _PROTOTYPE( double fmod,  (double _x, double _y)                        );
  1119. 01826 _PROTOTYPE( double frexp, (double _x, int *_exp)                        );
  1120. 01827 _PROTOTYPE( double ldexp, (double _x, int _exp)                         );
  1121. 01828 _PROTOTYPE( double log,   (double _x)                                   );
  1122. 01829 _PROTOTYPE( double log10, (double _x)                                   );
  1123. 01830 _PROTOTYPE( double modf,  (double _x, double *_iptr)                    );
  1124. 01831 _PROTOTYPE( double pow,   (double _x, double _y)                        );
  1125. 01832 _PROTOTYPE( double sin,   (double _x)                                   );
  1126. 01833 _PROTOTYPE( double sinh,  (double _x)                                   );
  1127. 01834 _PROTOTYPE( double sqrt,  (double _x)                                   );
  1128. 01835 _PROTOTYPE( double tan,   (double _x)                                   );
  1129. 01836 _PROTOTYPE( double tanh,  (double _x)                                   );
  1130. 01837
  1131. 01838 #endif /* _MATH_H */
  1132. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1133. include/mathconst.h    
  1134. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1135. 01900 /*
  1136. 01901  * mathconst.h - mathematic constants
  1137. 01902  */
  1138. 01903 /* $Header: mathconst.h,v 1.3 89/12/18 13:59:33 eck Exp $ */
  1139. 01904
  1140. 01905 #ifndef _MATHCONST_H
  1141. 01906 #define _MATHCONST_H
  1142. 01907
  1143. 01908 /* Some constants (Hart & Cheney) */
  1144. 01909 #define M_PI            3.14159265358979323846264338327950288
  1145. .Op 21 include/mathconst.h
  1146. 01910 #define M_2PI           6.28318530717958647692528676655900576
  1147. 01911 #define M_3PI_4         2.35619449019234492884698253745962716
  1148. 01912 #define M_PI_2          1.57079632679489661923132169163975144
  1149. 01913 #define M_3PI_8         1.17809724509617246442349126872981358
  1150. 01914 #define M_PI_4          0.78539816339744830961566084581987572
  1151. 01915 #define M_PI_8          0.39269908169872415480783042290993786
  1152. 01916 #define M_1_PI          0.31830988618379067153776752674502872
  1153. 01917 #define M_2_PI          0.63661977236758134307553505349005744
  1154. 01918 #define M_4_PI          1.27323954473516268615107010698011488
  1155. 01919 #define M_E             2.71828182845904523536028747135266250
  1156. 01920 #define M_LOG2E         1.44269504088896340735992468100189213
  1157. 01921 #define M_LOG10E        0.43429448190325182765112891891660508
  1158. 01922 #define M_LN2           0.69314718055994530941723212145817657
  1159. 01923 #define M_LN10          2.30258509299404568401799145468436421
  1160. 01924 #define M_SQRT2         1.41421356237309504880168872420969808
  1161. 01925 #define M_1_SQRT2       0.70710678118654752440084436210484904
  1162. 01926 #define M_EULER         0.57721566490153286060651209008240243
  1163. 01927
  1164. 01928 #endif /* _MATHCONST_H */
  1165. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1166. include/pwd.h    
  1167. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1168. 02000 /* The <pwd.h> header defines the items in the password file. */
  1169. 02001
  1170. 02002 #ifndef _PWD_H
  1171. 02003 #define _PWD_H
  1172. 02004
  1173. 02005 struct passwd {
  1174. 02006   char *pw_name;                /* login name */
  1175. 02007   uid_t pw_uid;                 /* uid corresponding to the name */
  1176. 02008   gid_t pw_gid;                 /* gid corresponding to the name */
  1177. 02009   char *pw_dir;                 /* user's home directory */
  1178. 02010   char *pw_shell;               /* name of the user's shell */
  1179. 02011
  1180. 02012   /* The following members are not defined by POSIX. */
  1181. 02013   char *pw_passwd;              /* password information */
  1182. 02014   char *pw_gecos;               /* just in case you have a GE 645 around */
  1183. 02015 };
  1184. 02016
  1185. 02017
  1186. 02018 /* Function Prototypes. */
  1187. 02019 #ifndef _ANSI_H
  1188. 02020 #include <ansi.h>
  1189. 02021 #endif
  1190. 02022
  1191. 02023 _PROTOTYPE( struct passwd *getpwnam, (const char *_name)                );
  1192. 02024 _PROTOTYPE( struct passwd *getpwuid, (Uid_t _uid)                       );
  1193. 02025
  1194. 02026 #ifdef _MINIX
  1195. 02027 _PROTOTYPE( void endpwent, (void)                                       );
  1196. 02028 _PROTOTYPE( struct passwd *getpwent, (void)                             );
  1197. 02029 _PROTOTYPE( int setpwent, (void)                                        );
  1198. 02030 _PROTOTYPE( void setpwfile, (const char *_file)                         );
  1199. 02031 #endif
  1200. 02032
  1201. 02033 #endif /* _PWD_H */
  1202. .Ep 22 include/regexp.h
  1203. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1204. include/regexp.h    
  1205. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1206. 02100 /* The <regexp.h> header is used by the (V8-compatible) regexp(3) routines. */
  1207. 02101
  1208. 02102 #ifndef _REGEXP_H
  1209. 02103 #define _REGEXP_H
  1210. 02104
  1211. 02105 #define CHARBITS 0377
  1212. 02106 #define NSUBEXP  10
  1213. 02107 typedef struct regexp {
  1214. 02108         char *startp[NSUBEXP];
  1215. 02109         char *endp[NSUBEXP];
  1216. 02110         char regstart;          /* Internal use only. */
  1217. 02111         char reganch;           /* Internal use only. */
  1218. 02112         char *regmust;          /* Internal use only. */
  1219. 02113         int regmlen;            /* Internal use only. */
  1220. 02114         char program[1];        /* Unwarranted chumminess with compiler. */
  1221. 02115 } regexp;
  1222. 02116
  1223. 02117 /* Function Prototypes. */
  1224. 02118 #ifndef _ANSI_H
  1225. 02119 #include <ansi.h>
  1226. 02120 #endif
  1227. 02121
  1228. 02122 _PROTOTYPE( regexp *regcomp, (char *_exp)                               );
  1229. 02123 _PROTOTYPE( int regexec, (regexp *_prog, char *_string, int _bolflag)   );
  1230. 02124 _PROTOTYPE( void regsub, (regexp *_prog, char *_source, char *_dest)    );
  1231. 02125 _PROTOTYPE( void regerror, (char *_message)                             );
  1232. 02126
  1233. 02127 #endif /* _REGEXP_H */
  1234. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1235. include/setjmp.h    
  1236. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1237. 02200 /* The <setjmp.h> header relates to the C phenomenon known as setjmp/longjmp.
  1238. 02201  * It is used to escape out of the current situation into a previous one.
  1239. 02202  * A typical example is in an editor, where hitting DEL breaks off the current
  1240. 02203  * command and puts the editor back in the main loop, though care has to be
  1241. 02204  * taken when the DEL occurs while executing a library function, since
  1242. 02205  * some of them are not reentrant.
  1243. 02206  *
  1244. 02207  * POSIX does not require the process signal mask to be saved and restored
  1245. 02208  * during setjmp/longjmp.  However, the current implementation does this
  1246. 02209  * in order to agree with OSF/1 and other BSD derived systems.
  1247. 02210  *
  1248. 02211  * The pair of functions _setjmp/_longjmp may be used when the signal
  1249. 02212  * mask is not to be saved/restored.  These functions are traditional
  1250. 02213  * in BSD systems.
  1251. 02214  *
  1252. 02215  * There are different ways of implementing setjmp/longjmp.  Probably
  1253. 02216  * the best way is to unify it with signal handling.  This is true for the
  1254. 02217  * following reasons:  Both setjmp/longjmp and signal delivery must save 
  1255. 02218  * a context so that it may be restored later.  The jmp_buf necessarily 
  1256. 02219  * contains signal information, namely the signal mask to restore.  Both
  1257. .Op 23 include/setjmp.h
  1258. 02220  * longjmp and the return of a signal handler must trap to the operating
  1259. 02221  * system to restore the previous signal mask.  Finally, the jmp_buf
  1260. 02222  * and the sigcontext structure contain the registers to restore.
  1261. 02223  *
  1262. 02224  * Some compilers, namely ACK, will not enregister any variables inside a
  1263. 02225  * function containing a call to setjmp, even if those variables are
  1264. 02226  * explicitly declared as register variables.  Thus for ACK, the
  1265. 02227  * identification of the jmp_buf with a sigcontext structure would cause
  1266. 02228  * unnecessary overhead: the jmp_buf has room for all the registers, but
  1267. 02229  * the only registers that need to be saved are the stack pointer, 
  1268. 02230  * frame pointer, and program counter.
  1269. 02231  *
  1270. 02232  * So, for ACK a jmp_buf is much smaller than a sigcontext structure, and
  1271. 02233  * longjmp does not directly call sigreturn.  Instead, longjmp calls a
  1272. 02234  * front-end function which initializes the appropriate fields of a
  1273. 02235  * sigcontext structure, marks this structure as containing no valid
  1274. 02236  * general purpose registers, and then calls sigreturn.
  1275. 02237  *
  1276. 02238  * The POSIX sigjmp_buf is identical to the jmp_buf in all cases.
  1277. 02239  *
  1278. 02240  * Different compilers have different symbols that they recognize as
  1279. 02241  * setjmp symbols.  ACK recognizes __setjmp, the GNU C compiler
  1280. 02242  * recognizes setjmp and _setjmp, and BCC recognizes all three.
  1281. 02243  * When these symbols occur within a function, the compiler may keep 
  1282. 02244  * all local variables on the stack, avoid certain optimizations, or
  1283. 02245  * pass hidden arguments to the setjmp function.
  1284. 02246  *  
  1285. 02247  * Thus, setjmp implementations vary in two independent ways which may
  1286. 02248  * be identified through the following preprocessor tokens:
  1287. 02249  *
  1288. 02250  * _SETJMP_SYMBOL -- If 0, this means the compiler treats setjmp and _setjmp
  1289. 02251  * specially.  If 1, this means the compiler treats __setjmp specially.
  1290. 02252  *
  1291. 02253  * _SETJMP_SAVES_REGS -- If 1, this means setjmp/longjmp must explicitly
  1292. 02254  * save and restore all registers.  This also implies that a jmp_buf is
  1293. 02255  * different than a sigcontext structure.  If 0, this means that the compiler
  1294. 02256  * will not use register variables within a function that calls one of 
  1295. 02257  * its SETJMP_SYMBOLs. 
  1296. 02258  * 
  1297. 02259  * When _SETJMP_SYMBOL = 1, the implementation has a few dozen bytes of
  1298. 02260  * unnecessary overhead.  This happens in the following manner:  a program uses
  1299. 02261  * _setjmp/_longjmp because it is not interested in saving and restoring the
  1300. 02262  * signal mask. Nevertheless, because _setjmp expands to the general purpose
  1301. 02263  * function __setjmp, code for sigprocmask(2) is linked into the program.  
  1302. 02264  */
  1303. 02265
  1304. 02266 #ifndef _SETJMP_H
  1305. 02267 #define _SETJMP_H
  1306. 02268
  1307. 02269 #ifndef _ANSI_H
  1308. 02270 #include <ansi.h>
  1309. 02271 #endif
  1310. 02272
  1311. 02273 #if !defined(__ACK__) && !defined(__BCC__) && !defined(__GNUC__)
  1312. 02274 #define __ACK__
  1313. 02275 #endif
  1314. 02276
  1315. 02277 #ifdef __ACK__
  1316. 02278 #define _SETJMP_SYMBOL 1
  1317. 02279 #define _SETJMP_SAVES_REGS 0
  1318. .Ep 24 include/setjmp.h
  1319. 02280 #endif
  1320. 02281 #ifdef __BCC__
  1321. 02282 #define _SETJMP_SYMBOL 0
  1322. 02283 #define _SETJMP_SAVES_REGS 1
  1323. 02284 #endif
  1324. 02285 #ifdef __GNUC__
  1325. 02286 #define _SETJMP_SYMBOL 0
  1326. 02287 #define _SETJMP_SAVES_REGS 1
  1327. 02288 #endif
  1328. 02289
  1329. 02290 /* The jmp_buf data type.  Do not change the order of these fields -- some
  1330. 02291  * C library code refers to these fields by name.  When _SETJMP_SAVES_REGS
  1331. 02292  * is 1, the file <sys/jmp_buf.h> gives the usage of the sixteen registers.
  1332. 02293  */
  1333. 02294 typedef struct {
  1334. 02295   int __flags;                  /* XXX - long might give better alignment */
  1335. 02296   long __mask;                  /* must have size >= sizeof(sigset_t) */
  1336. 02297 #if (_SETJMP_SAVES_REGS == 0)
  1337. 02298   _PROTOTYPE(void (*__pc),(void));      /* program counter */
  1338. 02299   void *__sp;                   /* stack pointer */
  1339. 02300   void *__lb;                   /* local base (ACKspeak for frame pointer) */
  1340. 02301 #else
  1341. 02302   void *__regs[16];             /* size is machine dependent */
  1342. 02303 #endif
  1343. 02304 } jmp_buf[1];
  1344. 02305
  1345. 02306 #if (_SETJMP_SYMBOL == 1)
  1346. 02307
  1347. 02308 _PROTOTYPE( int __setjmp, (jmp_buf _env, int _savemask)                 );
  1348. 02309 _PROTOTYPE( void longjmp, (jmp_buf _env, int _val)                      );
  1349. 02310 _PROTOTYPE(int sigjmp, (jmp_buf _jb, int _retval)                       );
  1350. 02311
  1351. 02312 #define setjmp(env)     __setjmp((env), 1)
  1352. 02313
  1353. 02314 #ifdef _MINIX
  1354. 02315 #define _setjmp(env)    __setjmp((env), 0)
  1355. 02316 _PROTOTYPE(void _longjmp, (jmp_buf _env, int _val)                      );
  1356. 02317 #endif
  1357. 02318
  1358. 02319 #ifdef _POSIX_SOURCE
  1359. 02320 typedef jmp_buf sigjmp_buf;
  1360. 02321 _PROTOTYPE( void siglongjmp, (sigjmp_buf _env, int _val)                );
  1361. 02322
  1362. 02323 #define sigsetjmp(env, savemask) __setjmp((env), (savemask))
  1363. 02324 #endif /* _POSIX_SOURCE */
  1364. 02325
  1365. 02326 #endif /* _SETJMP_SYMBOL == 1 */
  1366. 02327
  1367. 02328 #if (_SETJMP_SYMBOL == 0)
  1368. 02329
  1369. 02330 _PROTOTYPE( int setjmp, (jmp_buf _env)                                  );
  1370. 02331 _PROTOTYPE( void longjmp, (jmp_buf _env, int _val)                      );
  1371. 02332
  1372. 02333 #ifdef _MINIX
  1373. 02334 _PROTOTYPE( int _setjmp, (jmp_buf _env)                                 );
  1374. 02335 _PROTOTYPE( void _longjmp, (jmp_buf _env, int _val)                     );
  1375. 02336 #endif
  1376. 02337
  1377. 02338 #ifdef _POSIX_SOURCE
  1378. 02339 #define sigjmp_buf jmp_buf
  1379. .Op 25 include/setjmp.h
  1380. 02340 _PROTOTYPE( void siglongjmp, (sigjmp_buf _env, int _val)                );
  1381. 02341 /* XXX - the name _setjmp is no good - that's why ACK used __setjmp. */
  1382. 02342 #define sigsetjmp(env, savemask) ((savemask) ? setjmp(env) : _setjmp(env))
  1383. 02343 #endif /* _POSIX_SOURCE */
  1384. 02344
  1385. 02345 #endif /* _SETJMP_SYMBOL == 0 */
  1386. 02346
  1387. 02347 #endif /* _SETJMP_H */
  1388. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1389. include/sgtty.h    
  1390. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1391. 02400 /* The <sgtty.h> header contains data structures for ioctl(). */
  1392. 02401
  1393. 02402 #ifndef _SGTTY_H
  1394. 02403 #define _SGTTY_H
  1395. 02404
  1396. 02405 /* Should not be used, nor extended. Termios.h is the replacement for
  1397. 02406  * sgtty.h for tty functions, and ioctl replaced code should be moved to
  1398. 02407  * sys/ioctl.h and specific header files in the sys, or minix directory.
  1399. 02408  */
  1400. 02409 #include <sys/ioctl.h>          /* Ouch. */
  1401. 02410
  1402. 02411 struct sgttyb {
  1403. 02412   char sg_ispeed;               /* input speed */
  1404. 02413   char sg_ospeed;               /* output speed */
  1405. 02414   char sg_erase;                /* erase character */
  1406. 02415   char sg_kill;                 /* kill character */
  1407. 02416   int  sg_flags;                /* mode flags */
  1408. 02417 };
  1409. 02418
  1410. 02419 struct tchars {
  1411. 02420   char t_intrc;                 /* SIGINT char */
  1412. 02421   char t_quitc;                 /* SIGQUIT char */
  1413. 02422   char t_startc;                /* start output (initially CTRL-Q) */
  1414. 02423   char t_stopc;                 /* stop output  (initially CTRL-S) */
  1415. 02424   char t_eofc;                  /* EOF (initially CTRL-D) */
  1416. 02425   char t_brkc;                  /* input delimiter (like nl) */
  1417. 02426 };
  1418. 02427
  1419. 02428 #if !_SYSTEM                    /* the kernel doesn't want to see the rest */
  1420. 02429
  1421. 02430 /* Field names */
  1422. 02431 #define XTABS        0006000    /* do tab expansion */
  1423. 02432 #define BITS8        0001400    /* 8 bits/char */
  1424. 02433 #define BITS7        0001000    /* 7 bits/char */
  1425. 02434 #define BITS6        0000400    /* 6 bits/char */
  1426. 02435 #define BITS5        0000000    /* 5 bits/char */
  1427. 02436 #define EVENP        0000200    /* even parity */
  1428. 02437 #define ODDP         0000100    /* odd parity */
  1429. 02438 #define RAW          0000040    /* enable raw mode */
  1430. 02439 #define CRMOD        0000020    /* map lf to cr + lf */
  1431. 02440 #define ECHO         0000010    /* echo input */
  1432. 02441 #define CBREAK       0000002    /* enable cbreak mode */
  1433. 02442 #define COOKED       0000000    /* neither CBREAK nor RAW */
  1434. 02443
  1435. 02444 #define DCD          0100000    /* Data Carrier Detect */
  1436. .Ep 26 include/sgtty.h
  1437. 02445
  1438. 02446 /* Line speeds */
  1439. 02447 #define B0                 0    /* code for line-hangup */
  1440. 02448 #define B110               1
  1441. 02449 #define B300               3
  1442. 02450 #define B1200             12
  1443. 02451 #define B2400             24
  1444. 02452 #define B4800             48
  1445. 02453 #define B9600             96
  1446. 02454 #define B19200           192
  1447. 02455 #define B38400           195
  1448. 02456 #define B57600           194
  1449. 02457 #define B115200          193
  1450. 02458
  1451. 02459 /* Things Minix supports but not properly */
  1452. 02460 /* the divide-by-100 encoding ain't too hot */
  1453. 02461 #define ANYP         0000300
  1454. 02462 #define B50                0
  1455. 02463 #define B75                0
  1456. 02464 #define B134               0
  1457. 02465 #define B150               0
  1458. 02466 #define B200               2
  1459. 02467 #define B600               6
  1460. 02468 #define B1800             18
  1461. 02469 #define B3600             36
  1462. 02470 #define B7200             72
  1463. 02471 #define EXTA             192
  1464. 02472 #define EXTB               0
  1465. 02473
  1466. 02474 /* Things Minix doesn't support but are fairly harmless if used */
  1467. 02475 #define NLDELAY      0001400
  1468. 02476 #define TBDELAY      0006000
  1469. 02477 #define CRDELAY      0030000
  1470. 02478 #define VTDELAY      0040000
  1471. 02479 #define BSDELAY      0100000
  1472. 02480 #define ALLDELAY     0177400
  1473. 02481
  1474. 02482 /* Copied from termios.h: */
  1475. 02483 struct winsize
  1476. 02484 {
  1477. 02485         unsigned short  ws_row;         /* rows, in characters */
  1478. 02486         unsigned short  ws_col;         /* columns, in characters */
  1479. 02487         unsigned short  ws_xpixel;      /* horizontal size, pixels */
  1480. 02488         unsigned short  ws_ypixel;      /* vertical size, pixels */
  1481. 02489 };
  1482. 02490 #endif /* !_SYSTEM */
  1483. 02491 #endif /* _SGTTY_H */
  1484. .Op 27 include/signal.h
  1485. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1486. include/signal.h    
  1487. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1488. 02500 /* The <signal.h> header defines all the ANSI and POSIX signals.
  1489. 02501  * MINIX supports all the signals required by POSIX. They are defined below.
  1490. 02502  * Some additional signals are also supported.
  1491. 02503  */
  1492. 02504
  1493. 02505 #ifndef _SIGNAL_H
  1494. 02506 #define _SIGNAL_H
  1495. 02507
  1496. 02508 #ifndef _ANSI_H
  1497. 02509 #include <ansi.h>
  1498. 02510 #endif
  1499. 02511
  1500. 02512 /* Here are types that are closely associated with signal handling. */
  1501. 02513 typedef int sig_atomic_t;
  1502. 02514
  1503. 02515 #ifdef _POSIX_SOURCE
  1504. 02516 #ifndef _SIGSET_T
  1505. 02517 #define _SIGSET_T
  1506. 02518 typedef unsigned long sigset_t;
  1507. 02519 #endif
  1508. 02520 #endif
  1509. 02521
  1510. 02522 #define _NSIG             16    /* number of signals used */
  1511. 02523
  1512. 02524 #define SIGHUP             1    /* hangup */
  1513. 02525 #define SIGINT             2    /* interrupt (DEL) */
  1514. 02526 #define SIGQUIT            3    /* quit (ASCII FS) */
  1515. 02527 #define SIGILL             4    /* illegal instruction */
  1516. 02528 #define SIGTRAP            5    /* trace trap (not reset when caught) */
  1517. 02529 #define SIGABRT            6    /* IOT instruction */
  1518. 02530 #define SIGIOT             6    /* SIGABRT for people who speak PDP-11 */
  1519. 02531 #define SIGUNUSED          7    /* spare code */
  1520. 02532 #define SIGFPE             8    /* floating point exception */
  1521. 02533 #define SIGKILL            9    /* kill (cannot be caught or ignored) */
  1522. 02534 #define SIGUSR1           10    /* user defined signal # 1 */
  1523. 02535 #define SIGSEGV           11    /* segmentation violation */
  1524. 02536 #define SIGUSR2           12    /* user defined signal # 2 */
  1525. 02537 #define SIGPIPE           13    /* write on a pipe with no one to read it */
  1526. 02538 #define SIGALRM           14    /* alarm clock */
  1527. 02539 #define SIGTERM           15    /* software termination signal from kill */
  1528. 02540
  1529. 02541 #define SIGEMT             7    /* obsolete */
  1530. 02542 #define SIGBUS            10    /* obsolete */
  1531. 02543
  1532. 02544 /* POSIX requires the following signals to be defined, even if they are
  1533. 02545  * not supported.  Here are the definitions, but they are not supported.
  1534. 02546  */
  1535. 02547 #define SIGCHLD           17    /* child process terminated or stopped */
  1536. 02548 #define SIGCONT           18    /* continue if stopped */
  1537. 02549 #define SIGSTOP           19    /* stop signal */
  1538. 02550 #define SIGTSTP           20    /* interactive stop signal */
  1539. 02551 #define SIGTTIN           21    /* background process wants to read */
  1540. 02552 #define SIGTTOU           22    /* background process wants to write */
  1541. 02553
  1542. 02554 /* The sighandler_t type is not allowed unless _POSIX_SOURCE is defined. */
  1543. .Ep 28 include/signal.h
  1544. 02555 #ifdef _POSIX_SOURCE
  1545. 02556 #define __sighandler_t sighandler_t
  1546. 02557 #else
  1547. 02558 typedef void (*__sighandler_t) (int);
  1548. 02559 #endif
  1549. 02560
  1550. 02561 /* Macros used as function pointers. */
  1551. 02562 #define SIG_ERR    ((__sighandler_t) -1)        /* error return */
  1552. 02563 #define SIG_DFL    ((__sighandler_t)  0)        /* default signal handling */
  1553. 02564 #define SIG_IGN    ((__sighandler_t)  1)        /* ignore signal */
  1554. 02565 #define SIG_HOLD   ((__sighandler_t)  2)        /* block signal */
  1555. 02566 #define SIG_CATCH  ((__sighandler_t)  3)        /* catch signal */
  1556. 02567
  1557. 02568 #ifdef _POSIX_SOURCE
  1558. 02569 struct sigaction {
  1559. 02570   __sighandler_t sa_handler;    /* SIG_DFL, SIG_IGN, or pointer to function */
  1560. 02571   sigset_t sa_mask;             /* signals to be blocked during handler */
  1561. 02572   int sa_flags;                 /* special flags */
  1562. 02573 };
  1563. 02574
  1564. 02575 /* Fields for sa_flags. */
  1565. 02576 #define SA_ONSTACK   0x0001     /* deliver signal on alternate stack */
  1566. 02577 #define SA_RESETHAND 0x0002     /* reset signal handler when signal caught */
  1567. 02578 #define SA_NODEFER   0x0004     /* don't block signal while catching it */
  1568. 02579 #define SA_RESTART   0x0008     /* automatic system call restart */
  1569. 02580 #define SA_SIGINFO   0x0010     /* extended signal handling */
  1570. 02581 #define SA_NOCLDWAIT 0x0020     /* don't create zombies */
  1571. 02582 #define SA_NOCLDSTOP 0x0040     /* don't receive SIGCHLD when child stops */
  1572. 02583
  1573. 02584 /* POSIX requires these values for use with sigprocmask(2). */
  1574. 02585 #define SIG_BLOCK          0    /* for blocking signals */
  1575. 02586 #define SIG_UNBLOCK        1    /* for unblocking signals */
  1576. 02587 #define SIG_SETMASK        2    /* for setting the signal mask */
  1577. 02588 #define SIG_INQUIRE        4    /* for internal use only */
  1578. 02589 #endif  /* _POSIX_SOURCE */
  1579. 02590
  1580. 02591 /* POSIX and ANSI function prototypes. */
  1581. 02592 _PROTOTYPE( int raise, (int _sig)                                       );
  1582. 02593 _PROTOTYPE( __sighandler_t signal, (int _sig, __sighandler_t _func)     );
  1583. 02594
  1584. 02595 #ifdef _POSIX_SOURCE
  1585. 02596 _PROTOTYPE( int kill, (pid_t _pid, int _sig)                            );
  1586. 02597 _PROTOTYPE( int sigaction,
  1587. 02598     (int _sig, const struct sigaction *_act, struct sigaction *_oact)   );
  1588. 02599 _PROTOTYPE( int sigaddset, (sigset_t *_set, int _sig)                   );
  1589. 02600 _PROTOTYPE( int sigdelset, (sigset_t *_set, int _sig)                   );
  1590. 02601 _PROTOTYPE( int sigemptyset, (sigset_t *_set)                           );
  1591. 02602 _PROTOTYPE( int sigfillset, (sigset_t *_set)                            );
  1592. 02603 _PROTOTYPE( int sigismember, (sigset_t *_set, int _sig)                 );
  1593. 02604 _PROTOTYPE( int sigpending, (sigset_t *_set)                            );
  1594. 02605 _PROTOTYPE( int sigprocmask,
  1595. 02606             (int _how, const sigset_t *_set, sigset_t *_oset)           );
  1596. 02607 _PROTOTYPE( int sigsuspend, (const sigset_t *_sigmask)                  );
  1597. 02608 #endif
  1598. 02609
  1599. 02610 #endif /* _SIGNAL_H */
  1600. .Op 29 include/stdarg.h
  1601. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1602. include/stdarg.h    
  1603. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1604. 02700 /* The <stdarg.h> header is ANSI's way to handle variable numbers of params.
  1605. 02701  * Some programming languages require a function that is declared with n
  1606. 02702  * parameters to be called with n parameters.  C does not.  A function may
  1607. 02703  * called with more parameters than it is declared with.  The well-known
  1608. 02704  * printf function, for example, may have arbitrarily many parameters.
  1609. 02705  * The question arises how one can access all the parameters in a portable
  1610. 02706  * way.  The C standard defines three macros that programs can use to
  1611. 02707  * advance through the parameter list.  The definition of these macros for
  1612. 02708  * MINIX are given in this file.  The three macros are:
  1613. 02709  *
  1614. 02710  *      va_start(ap, parmN)     prepare to access parameters
  1615. 02711  *      va_arg(ap, type)        get next parameter value and type
  1616. 02712  *      va_end(ap)              access is finished
  1617. 02713  *
  1618. 02714  * Ken Thompson's famous line from V6 UNIX is equally applicable to this file:
  1619. 02715  *
  1620. 02716  *      "You are not expected to understand this"
  1621. 02717  *
  1622. 02718  */
  1623. 02719
  1624. 02720 #ifndef _STDARG_H
  1625. 02721 #define _STDARG_H
  1626. 02722
  1627. 02723
  1628. 02724 #ifdef __GNUC__
  1629. 02725 /* The GNU C-compiler uses its own, but similar varargs mechanism. */
  1630. 02726
  1631. 02727 typedef char *va_list;
  1632. 02728
  1633. 02729 /* Amount of space required in an argument list for an arg of type TYPE.
  1634. 02730  * TYPE may alternatively be an expression whose type is used.
  1635. 02731  */
  1636. 02732
  1637. 02733 #define __va_rounded_size(TYPE)  
  1638. 02734   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  1639. 02735
  1640. 02736 #if __GNUC__ < 2
  1641. 02737
  1642. 02738 #ifndef __sparc__
  1643. 02739 #define va_start(AP, LASTARG)                                           
  1644. 02740  (AP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
  1645. 02741 #else
  1646. 02742 #define va_start(AP, LASTARG)                                           
  1647. 02743  (__builtin_saveregs (),                                                
  1648. 02744   AP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
  1649. 02745 #endif
  1650. 02746
  1651. 02747 void va_end (va_list);          /* Defined in gnulib */
  1652. 02748 #define va_end(AP)
  1653. 02749
  1654. 02750 #define va_arg(AP, TYPE)                                                
  1655. 02751  (AP += __va_rounded_size (TYPE),                                       
  1656. 02752   *((TYPE *) (AP - __va_rounded_size (TYPE))))
  1657. 02753
  1658. 02754 #else   /* __GNUC__ >= 2 */
  1659. .Ep 30 include/stdarg.h
  1660. 02755
  1661. 02756 #ifndef __sparc__
  1662. 02757 #define va_start(AP, LASTARG)                                           
  1663. 02758  (AP = ((char *) __builtin_next_arg ()))
  1664. 02759 #else
  1665. 02760 #define va_start(AP, LASTARG)                                   
  1666. 02761   (__builtin_saveregs (), AP = ((char *) __builtin_next_arg ()))
  1667. 02762 #endif
  1668. 02763
  1669. 02764 void va_end (va_list);          /* Defined in libgcc.a */
  1670. 02765 #define va_end(AP)
  1671. 02766
  1672. 02767 #define va_arg(AP, TYPE)                                                
  1673. 02768  (AP = ((char *) (AP)) += __va_rounded_size (TYPE),                     
  1674. 02769   *((TYPE *) ((char *) (AP) - __va_rounded_size (TYPE))))
  1675. 02770
  1676. 02771 #endif  /* __GNUC__ >= 2 */
  1677. 02772
  1678. 02773 #else   /* not __GNUC__ */
  1679. 02774
  1680. 02775
  1681. 02776 typedef char *va_list;
  1682. 02777
  1683. 02778 #define __vasz(x)               ((sizeof(x)+sizeof(int)-1) & ~(sizeof(int) -1))
  1684. 02779
  1685. 02780 #define va_start(ap, parmN)     ((ap) = (va_list)&parmN + __vasz(parmN))
  1686. 02781 #define va_arg(ap, type)      
  1687. 02782   (*((type *)((va_list)((ap) = (void *)((va_list)(ap) + __vasz(type))) 
  1688. 02783                                                     - __vasz(type))))
  1689. 02784 #define va_end(ap)
  1690. 02785
  1691. 02786
  1692. 02787 #endif /* __GNUC__ */
  1693. 02788
  1694. 02789 #endif /* _STDARG_H */
  1695. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1696. include/stddef.h    
  1697. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1698. 02800 /* The <stddef.h> header defines certain commonly used macros. */
  1699. 02801
  1700. 02802 #ifndef _STDDEF_H
  1701. 02803 #define _STDDEF_H
  1702. 02804
  1703. 02805 #define NULL   ((void *)0)
  1704. 02806
  1705. 02807 /* The following is not portable, but the compiler accepts it. */
  1706. 02808 #define offsetof(type, ident)   ((size_t) (unsigned long) &((type *)0)->ident)
  1707. 02809
  1708. 02810 #if _EM_PSIZE == _EM_WSIZE
  1709. 02811 typedef int ptrdiff_t;          /* result of subtracting two pointers */
  1710. 02812 #else   /* _EM_PSIZE == _EM_LSIZE */
  1711. 02813 typedef long ptrdiff_t;
  1712. 02814 #endif
  1713. .Op 31 include/stddef.h
  1714. 02815
  1715. 02816 #ifndef _SIZE_T
  1716. 02817 #define _SIZE_T
  1717. 02818 typedef unsigned int size_t;    /* type returned by sizeof */
  1718. 02819 #endif
  1719. 02820
  1720. 02821 #ifndef _WCHAR_T
  1721. 02822 #define _WCHAR_T
  1722. 02823 typedef char wchar_t;           /* type expanded character set */
  1723. 02824 #endif
  1724. 02825
  1725. 02826 #endif /* _STDDEF_H */
  1726. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1727. include/stdio.h    
  1728. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1729. 02900 /*
  1730. 02901  * stdio.h - input/output definitions
  1731. 02902  *
  1732. 02903  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  1733. 02904  * See the copyright notice in the ACK home directory, in the file "Copyright".
  1734. 02905  */
  1735. 02906 /* $Header: stdio.h,v 1.3 89/12/18 14:00:10 eck Exp $ */
  1736. 02907
  1737. 02908 #ifndef _STDIO_H
  1738. 02909 #define _STDIO_H
  1739. 02910
  1740. 02911 /*
  1741. 02912  * Focus point of all stdio activity.
  1742. 02913  */
  1743. 02914 typedef struct __iobuf {
  1744. 02915         int             _count;
  1745. 02916         int             _fd;
  1746. 02917         int             _flags;
  1747. 02918         int             _bufsiz;
  1748. 02919         unsigned char   *_buf;
  1749. 02920         unsigned char   *_ptr;
  1750. 02921 } FILE;
  1751. 02922
  1752. 02923 #define _IOFBF          0x000
  1753. 02924 #define _IOREAD         0x001
  1754. 02925 #define _IOWRITE        0x002
  1755. 02926 #define _IONBF          0x004
  1756. 02927 #define _IOMYBUF        0x008
  1757. 02928 #define _IOEOF          0x010
  1758. 02929 #define _IOERR          0x020
  1759. 02930 #define _IOLBF          0x040
  1760. 02931 #define _IOREADING      0x080
  1761. 02932 #define _IOWRITING      0x100
  1762. 02933 #define _IOAPPEND       0x200
  1763. 02934
  1764. 02935 /* The following definitions are also in <unistd.h>. They should not
  1765. 02936  * conflict.
  1766. 02937  */
  1767. 02938 #define SEEK_SET        0
  1768. 02939 #define SEEK_CUR        1
  1769. .Ep 32 include/stdio.h
  1770. 02940 #define SEEK_END        2
  1771. 02941
  1772. 02942 #define stdin           (&__stdin)
  1773. 02943 #define stdout          (&__stdout)
  1774. 02944 #define stderr          (&__stderr)
  1775. 02945
  1776. 02946 #define BUFSIZ          1024
  1777. 02947 #define NULL            ((void *)0)
  1778. 02948 #define EOF             (-1)
  1779. 02949
  1780. 02950 #define FOPEN_MAX       20
  1781. 02951
  1782. 02952 #define FILENAME_MAX    14
  1783. 02953 #define TMP_MAX         999
  1784. 02954 #define L_tmpnam        (sizeof("/tmp/") + FILENAME_MAX)
  1785. 02955 #define __STDIO_VA_LIST__       void *
  1786. 02956
  1787. 02957 typedef long int        fpos_t;
  1788. 02958
  1789. 02959 #ifndef _SIZE_T
  1790. 02960 #define _SIZE_T
  1791. 02961 typedef unsigned int    size_t;         /* type returned by sizeof */
  1792. 02962 #endif /* _SIZE_T */
  1793. 02963
  1794. 02964 extern FILE     *__iotab[FOPEN_MAX];
  1795. 02965 extern FILE     __stdin, __stdout, __stderr;
  1796. 02966
  1797. 02967 #ifndef _ANSI_H
  1798. 02968 #include <ansi.h>
  1799. 02969 #endif
  1800. 02970
  1801. 02971 _PROTOTYPE( int remove, (const char *_filename)                         );
  1802. 02972 _PROTOTYPE( int rename, (const char *_old, const char *_new)            );
  1803. 02973 _PROTOTYPE( FILE *tmpfile, (void)                                       );
  1804. 02974 _PROTOTYPE( char *tmpnam, (char *_s)                                    );
  1805. 02975 _PROTOTYPE( int fclose, (FILE *_stream)                                 );
  1806. 02976 _PROTOTYPE( int fflush, (FILE *_stream)                                 );
  1807. 02977 _PROTOTYPE( FILE *fopen, (const char *_filename, const char *_mode)     );
  1808. 02978 _PROTOTYPE( FILE *freopen,
  1809. 02979             (const char *_filename, const char *_mode, FILE *_stream)   );
  1810. 02980 _PROTOTYPE( void setbuf, (FILE *_stream, char *_buf)                    );
  1811. 02981 _PROTOTYPE( int setvbuf,
  1812. 02982                 (FILE *_stream, char *_buf, int _mode, size_t _size)    );
  1813. 02983 _PROTOTYPE( int fprintf, (FILE *_stream, const char *_format, ...)      );
  1814. 02984 _PROTOTYPE( int printf, (const char *_format, ...)                      );
  1815. 02985 _PROTOTYPE( int sprintf, (char *_s, const char *_format, ...)           );
  1816. 02986 _PROTOTYPE( int vfprintf,
  1817. 02987                 (FILE *_stream, const char *_format, char *_arg)        );
  1818. 02988 _PROTOTYPE( int vprintf, (const char *_format, char *_arg)              );
  1819. 02989 _PROTOTYPE( int vsprintf, (char *_s, const char *_format, char *_arg)   );
  1820. 02990 _PROTOTYPE( int fscanf, (FILE *_stream, const char *_format, ...)       );
  1821. 02991 _PROTOTYPE( int scanf, (const char *_format, ...)                       );
  1822. 02992 _PROTOTYPE( int sscanf, (const char *_s, const char *_format, ...)      );
  1823. 02993 #define vfscanf _doscan
  1824. 02994 _PROTOTYPE( int vfscanf, (FILE *_stream, const char *_format, char *_arg));
  1825. 02995 _PROTOTYPE( int vscanf, (const char *_format, char *_arg)               );
  1826. 02996 _PROTOTYPE( int vsscanf, (const char *_s, const char *_format, char *_arg));
  1827. 02997 _PROTOTYPE( int fgetc, (FILE *_stream)                                  );
  1828. 02998 _PROTOTYPE( char *fgets, (char *_s, int _n, FILE *_stream)              );
  1829. 02999 _PROTOTYPE( int fputc, (int _c, FILE *_stream)                          );
  1830. .Op 33 include/stdio.h
  1831. 03000 _PROTOTYPE( int fputs, (const char *_s, FILE *_stream)                  );
  1832. 03001 _PROTOTYPE( int getc, (FILE *_stream)                                   );
  1833. 03002 _PROTOTYPE( int getchar, (void)                                         );
  1834. 03003 _PROTOTYPE( char *gets, (char *_s)                                      );
  1835. 03004 _PROTOTYPE( int putc, (int _c, FILE *_stream)                           );
  1836. 03005 _PROTOTYPE( int putchar, (int _c)                                       );
  1837. 03006 _PROTOTYPE( int puts, (const char *_s)                                  );
  1838. 03007 _PROTOTYPE( int ungetc, (int _c, FILE *_stream)                         );
  1839. 03008 _PROTOTYPE( size_t fread,
  1840. 03009             (void *_ptr, size_t _size, size_t _nmemb, FILE *_stream)    );
  1841. 03010 _PROTOTYPE( size_t fwrite,
  1842. 03011         (const void *_ptr, size_t _size, size_t _nmemb, FILE *_stream)  );
  1843. 03012 _PROTOTYPE( int fgetpos, (FILE *_stream, fpos_t *_pos)                  );
  1844. 03013 _PROTOTYPE( int fseek, (FILE *_stream, long _offset, int _whence)       );
  1845. 03014 _PROTOTYPE( int fsetpos, (FILE *_stream, fpos_t *_pos)                  );
  1846. 03015 _PROTOTYPE( long ftell, (FILE *_stream)                                 );
  1847. 03016 _PROTOTYPE( void rewind, (FILE *_stream)                                );
  1848. 03017 _PROTOTYPE( void clearerr, (FILE *_stream)                              );
  1849. 03018 _PROTOTYPE( int feof, (FILE *_stream)                                   );
  1850. 03019 _PROTOTYPE( int ferror, (FILE *_stream)                                 );
  1851. 03020 _PROTOTYPE( void perror, (const char *_s)                               );
  1852. 03021 _PROTOTYPE( int __fillbuf, (FILE *_stream)                              );
  1853. 03022 _PROTOTYPE( int __flushbuf, (int _c, FILE *_stream)                     );
  1854. 03023
  1855. 03024 #define getchar()       getc(stdin)
  1856. 03025 #define putchar(c)      putc(c,stdout)
  1857. 03026 #define getc(p)         (--(p)->_count >= 0 ? (int) (*(p)->_ptr++) : 
  1858. 03027                                 __fillbuf(p))
  1859. 03028 #define putc(c, p)      (--(p)->_count >= 0 ? 
  1860. 03029                          (int) (*(p)->_ptr++ = (c)) : 
  1861. 03030                          __flushbuf((c),(p)))
  1862. 03031
  1863. 03032 #define feof(p)         (((p)->_flags & _IOEOF) != 0)
  1864. 03033 #define ferror(p)       (((p)->_flags & _IOERR) != 0)
  1865. 03034 #define clearerr(p)     ((p)->_flags &= ~(_IOERR|_IOEOF))
  1866. 03035
  1867. 03036 #ifdef _POSIX_SOURCE
  1868. 03037 _PROTOTYPE( int fileno, (FILE *_stream)                                 );
  1869. 03038 _PROTOTYPE (FILE *fdopen, (int _fildes, const char *_types) );
  1870. 03039 #define fileno(stream)          ((stream)->_fd)
  1871. 03040 #define L_ctermid 255   /* required by POSIX */
  1872. 03041 #define L_cuserid 255   /* required by POSIX */
  1873. 03042 #endif
  1874. 03043
  1875. 03044 #ifdef _MINIX
  1876. 03045 _PROTOTYPE(FILE *popen, (const char *_command, const char *_type));
  1877. 03046 _PROTOTYPE(int pclose, (FILE *_stream));
  1878. 03047 #endif
  1879. 03048
  1880. 03049 #endif /* _STDIO_H */
  1881. .Ep 34 include/stdlib.h
  1882. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1883. include/stdlib.h    
  1884. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1885. 03100 /* The <stdlib.h> header defines certain common macros, types, and functions.*/
  1886. 03101
  1887. 03102 #ifndef _STDLIB_H
  1888. 03103 #define _STDLIB_H
  1889. 03104
  1890. 03105 /* The macros are NULL, EXIT_FAILURE, EXIT_SUCCESS, RAND_MAX, and MB_CUR_MAX.*/
  1891. 03106 #define NULL    ((void *)0)
  1892. 03107
  1893. 03108 #define EXIT_FAILURE       1    /* standard error return using exit() */
  1894. 03109 #define EXIT_SUCCESS       0    /* successful return using exit() */
  1895. 03110 #define RAND_MAX       32767    /* largest value generated by rand() */
  1896. 03111 #define MB_CUR_MAX         1    /* max value of multibyte character in MINIX */
  1897. 03112
  1898. 03113 typedef struct { int quot, rem; } div_t;
  1899. 03114 typedef struct { long quot, rem; } ldiv_t;
  1900. 03115
  1901. 03116 /* The types are size_t, wchar_t, div_t, and ldiv_t. */
  1902. 03117 #ifndef _SIZE_T
  1903. 03118 #define _SIZE_T
  1904. 03119 typedef unsigned int size_t;    /* type returned by sizeof */
  1905. 03120 #endif
  1906. 03121
  1907. 03122 #ifndef _WCHAR_T
  1908. 03123 #define _WCHAR_T
  1909. 03124 typedef char wchar_t;           /* type expanded character set */
  1910. 03125 #endif
  1911. 03126
  1912. 03127 /* Function Prototypes. */
  1913. 03128 #ifndef _ANSI_H
  1914. 03129 #include <ansi.h>
  1915. 03130 #endif
  1916. 03131
  1917. 03132 _PROTOTYPE( void abort, (void)                                          );
  1918. 03133 _PROTOTYPE( int abs, (int _j)                                           );
  1919. 03134 _PROTOTYPE( int atexit, (void (*_func)(void))                           );
  1920. 03135 _PROTOTYPE( double atof, (const char *_nptr)                            );
  1921. 03136 _PROTOTYPE( int atoi, (const char *_nptr)                               );
  1922. 03137 _PROTOTYPE( long atol, (const char *_nptr)                              );
  1923. 03138 _PROTOTYPE( void *calloc, (size_t _nmemb, size_t _size)                 );
  1924. 03139 _PROTOTYPE( div_t div, (int _numer, int _denom)                         );
  1925. 03140 _PROTOTYPE( void exit, (int _status)                                    );
  1926. 03141 _PROTOTYPE( void free, (void *_ptr)                                     );
  1927. 03142 _PROTOTYPE( char *getenv, (const char *_name)                           );
  1928. 03143 _PROTOTYPE( long labs, (long _j)                                        );
  1929. 03144 _PROTOTYPE( ldiv_t ldiv, (long _numer, long _denom)                     );
  1930. 03145 _PROTOTYPE( void *malloc, (size_t _size)                                );
  1931. 03146 _PROTOTYPE( int mblen, (const char *_s, size_t _n)                      );
  1932. 03147 _PROTOTYPE( size_t mbstowcs, (wchar_t *_pwcs, const char *_s, size_t _n));
  1933. 03148 _PROTOTYPE( int mbtowc, (wchar_t *_pwc, const char *_s, size_t _n)      );
  1934. 03149 _PROTOTYPE( int rand, (void)                                            );
  1935. 03150 _PROTOTYPE( void *realloc, (void *_ptr, size_t _size)                   );
  1936. 03151 _PROTOTYPE( void srand, (unsigned int _seed)                            );
  1937. 03152 _PROTOTYPE( double strtod, (const char *_nptr, char **_endptr)          );
  1938. 03153 _PROTOTYPE( long strtol, (const char *_nptr, char **_endptr, int _base) );
  1939. 03154 _PROTOTYPE( int system, (const char *_string)                           );
  1940. .Op 35 include/stdlib.h
  1941. 03155 _PROTOTYPE( size_t wcstombs, (char *_s, const wchar_t *_pwcs, size_t _n));
  1942. 03156 _PROTOTYPE( int wctomb, (char *_s, wchar_t _wchar)                      );
  1943. 03157 _PROTOTYPE( void *bsearch, (const void *_key, const void *_base, 
  1944. 03158         size_t _nmemb, size_t _size, 
  1945. 03159         int (*compar) (const void *, const void *))                     );
  1946. 03160 _PROTOTYPE( void qsort, (void *_base, size_t _nmemb, size_t _size,
  1947. 03161         int (*compar) (const void *, const void *))                     );
  1948. 03162 _PROTOTYPE( unsigned long int strtoul,
  1949. 03163                         (const char *_nptr, char **_endptr, int _base)  );
  1950. 03164
  1951. 03165 #ifdef _MINIX
  1952. 03166 _PROTOTYPE( int putenv, (const char *_name)                             );
  1953. 03167 _PROTOTYPE(int getopt, (int _argc, char **_argv, char *_opts));
  1954. 03168 extern char *optarg;
  1955. 03169 extern int optind, opterr, optopt;
  1956. 03170 #endif /* _MINIX */
  1957. 03171
  1958. 03172 #endif /* STDLIB_H */
  1959. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1960. include/string.h    
  1961. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1962. 03200 /* The <string.h> header contains prototypes for the string handling 
  1963. 03201  * functions.
  1964. 03202  */
  1965. 03203
  1966. 03204 #ifndef _STRING_H
  1967. 03205 #define _STRING_H
  1968. 03206
  1969. 03207 #define NULL    ((void *)0)
  1970. 03208
  1971. 03209 #ifndef _SIZE_T
  1972. 03210 #define _SIZE_T
  1973. 03211 typedef unsigned int size_t;    /* type returned by sizeof */
  1974. 03212 #endif /*_SIZE_T */
  1975. 03213
  1976. 03214 /* Function Prototypes. */
  1977. 03215 #ifndef _ANSI_H
  1978. 03216 #include <ansi.h>
  1979. 03217 #endif
  1980. 03218
  1981. 03219 _PROTOTYPE( void *memchr, (const void *_s, int _c, size_t _n)           );
  1982. 03220 _PROTOTYPE( int memcmp, (const void *_s1, const void *_s2, size_t _n)   );
  1983. 03221 _PROTOTYPE( void *memcpy, (void *_s1, const void *_s2, size_t _n)       );
  1984. 03222 _PROTOTYPE( void *memmove, (void *_s1, const void *_s2, size_t _n)      );
  1985. 03223 _PROTOTYPE( void *memset, (void *_s, int _c, size_t _n)                 );
  1986. 03224 _PROTOTYPE( char *strcat, (char *_s1, const char *_s2)                  );
  1987. 03225 _PROTOTYPE( char *strchr, (const char *_s, int _c)                      );
  1988. 03226 _PROTOTYPE( int strncmp, (const char *_s1, const char *_s2, size_t _n)  );
  1989. 03227 _PROTOTYPE( int strcmp, (const char *_s1, const char *_s2)              );
  1990. 03228 _PROTOTYPE( int strcoll, (const char *_s1, const char *_s2)             );
  1991. 03229 _PROTOTYPE( char *strcpy, (char *_s1, const char *_s2)                  );
  1992. 03230 _PROTOTYPE( size_t strcspn, (const char *_s1, const char *_s2)          );
  1993. 03231 _PROTOTYPE( char *strerror, (int _errnum)                               );
  1994. 03232 _PROTOTYPE( size_t strlen, (const char *_s)                             );
  1995. 03233 _PROTOTYPE( char *strncat, (char *_s1, const char *_s2, size_t _n)      );
  1996. 03234 _PROTOTYPE( char *strncpy, (char *_s1, const char *_s2, size_t _n)      );
  1997. .Ep 36 include/string.h
  1998. 03235 _PROTOTYPE( char *strpbrk, (const char *_s1, const char *_s2)           );
  1999. 03236 _PROTOTYPE( char *strrchr, (const char *_s, int _c)                     );
  2000. 03237 _PROTOTYPE( size_t strspn, (const char *_s1, const char *_s2)           );
  2001. 03238 _PROTOTYPE( char *strstr, (const char *_s1, const char *_s2)            );
  2002. 03239 _PROTOTYPE( char *strtok, (char *_s1, const char *_s2)                  );
  2003. 03240 _PROTOTYPE( size_t strxfrm, (char *_s1, const char *_s2, size_t _n)     );
  2004. 03241
  2005. 03242 #ifdef _MINIX
  2006. 03243 /* For backward compatibility. */
  2007. 03244 _PROTOTYPE( char *index, (const char *_s, int _charwanted)              );
  2008. 03245 _PROTOTYPE( char *rindex, (const char *_s, int _charwanted)             );
  2009. 03246 _PROTOTYPE( void bcopy, (const void *_src, void *_dst, size_t _length)  );
  2010. 03247 _PROTOTYPE( int bcmp, (const void *_s1, const void *_s2, size_t _length));
  2011. 03248 _PROTOTYPE( void bzero, (void *_dst, size_t _length)                    );
  2012. 03249 _PROTOTYPE( void *memccpy, (char *_dst, const char *_src, int _ucharstop,
  2013. 03250                                                     size_t _size)       );
  2014. 03251 /* BSD functions */
  2015. 03252 _PROTOTYPE( int strcasecmp, (const char *_s1, const char *_s2)          );
  2016. 03253 #endif
  2017. 03254
  2018. 03255 #endif /* _STRING_H */
  2019. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2020. include/tar.h    
  2021. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2022. 03300 /* The <tar.h> header is used with the tape archiver, tar. */
  2023. 03301
  2024. 03302 #ifndef _TAR_H
  2025. 03303 #define _TAR_H
  2026. 03304
  2027. 03305 #define TBLOCK          512
  2028. 03306 #define NAMSIZ          100
  2029. 03307 #define PFXSIZ          155
  2030. 03308
  2031. 03309 #define TMODLEN         8
  2032. 03310 #define TUIDLEN         8
  2033. 03311 #define TGIDLEN         8
  2034. 03312 #define TSIZLEN         12
  2035. 03313 #define TMTMLEN         12
  2036. 03314 #define TCKSLEN         8
  2037. 03315
  2038. 03316 #define TMAGIC          "ustar"
  2039. 03317 #define TMAGLEN         6
  2040. 03318 #define TVERSION        "00"
  2041. 03319 #define TVERSLEN        2
  2042. 03320 #define TUNMLEN         32
  2043. 03321 #define TGNMLEN         32
  2044. 03322 #define TDEVLEN         8
  2045. 03323
  2046. 03324 #define REGTYPE         '0'
  2047. 03325 #define AREGTYPE        ''
  2048. 03326 #define LNKTYPE         '1'
  2049. 03327 #define SYMTYPE         '2'
  2050. 03328 #define CHRTYPE         '3'
  2051. 03329 #define BLKTYPE         '4'
  2052. .Op 37 include/tar.h
  2053. 03330 #define DIRTYPE         '5'
  2054. 03331 #define FIFOTYPE        '6'
  2055. 03332 #define CONTTYPE        '7'
  2056. 03333
  2057. 03334 #define TSUID           04000
  2058. 03335 #define TSGID           02000
  2059. 03336 #define TSVTX           01000
  2060. 03337
  2061. 03338 #define TUREAD          00400
  2062. 03339 #define TUWRITE         00200
  2063. 03340 #define TUEXEC          00100
  2064. 03341 #define TGREAD          00040
  2065. 03342 #define TGWRITE         00020
  2066. 03343 #define TGEXEC          00010
  2067. 03344 #define TOREAD          00004
  2068. 03345 #define TOWRITE         00002
  2069. 03346 #define TOEXEC          00001
  2070. 03347
  2071. 03348 union hblock {
  2072. 03349   char dummy[TBLOCK];
  2073. 03350   struct header {
  2074. 03351         char name[NAMSIZ];
  2075. 03352         char mode[TMODLEN];
  2076. 03353         char uid[TUIDLEN];
  2077. 03354         char gid[TGIDLEN];
  2078. 03355         char size[TSIZLEN];
  2079. 03356         char mtime[TMTMLEN];
  2080. 03357         char chksum[TCKSLEN];
  2081. 03358         char typeflag;
  2082. 03359         char linkname[NAMSIZ];
  2083. 03360         char magic[TMAGLEN];
  2084. 03361         char version[TVERSLEN];
  2085. 03362         char uname[TUNMLEN];
  2086. 03363         char gname[TGNMLEN];
  2087. 03364         char devmajor[TDEVLEN];
  2088. 03365         char devminor[TDEVLEN];
  2089. 03366         char prefix[PFXSIZ];
  2090. 03367   } dbuf;
  2091. 03368 };
  2092. 03369
  2093. 03370 #endif /* _TAR_H */
  2094. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2095. include/termcap.h    
  2096. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2097. 03400 #ifndef _TERMCAP_H
  2098. 03401 #define _TERMCAP_H
  2099. 03402
  2100. 03403 #include <ansi.h>
  2101. 03404
  2102. 03405 _PROTOTYPE( int tgetent, (char *_bp, char *_name)                       );
  2103. 03406 _PROTOTYPE( int tgetflag, (char *_id)                                   );
  2104. 03407 _PROTOTYPE( int tgetnum, (char *_id)                                    );
  2105. 03408 _PROTOTYPE( char *tgetstr, (char *_id, char **_area)                    );
  2106. 03409 _PROTOTYPE( char *tgoto, (char *_cm, int _destcol, int _destline)       );
  2107. .Ep 38 include/termcap.h
  2108. 03410 _PROTOTYPE( int tputs, (char *_cp, int _affcnt, void (*_outc)(int))     );
  2109. 03411
  2110. 03412 #endif /* _TERMCAP_H */
  2111. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2112. include/termios.h    
  2113. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2114. 03500 /* The <termios.h> header is used for controlling tty modes. */
  2115. 03501
  2116. 03502 #ifndef _TERMIOS_H
  2117. 03503 #define _TERMIOS_H
  2118. 03504
  2119. 03505 typedef unsigned short tcflag_t;
  2120. 03506 typedef unsigned char cc_t;
  2121. 03507 typedef unsigned int speed_t;
  2122. 03508
  2123. 03509 #define NCCS            20      /* size of cc_c array, some extra space
  2124. 03510                                  * for extensions. */
  2125. 03511
  2126. 03512 /* Primary terminal control structure. POSIX Table 7-1. */
  2127. 03513 struct termios {
  2128. 03514   tcflag_t c_iflag;             /* input modes */
  2129. 03515   tcflag_t c_oflag;             /* output modes */
  2130. 03516   tcflag_t c_cflag;             /* control modes */
  2131. 03517   tcflag_t c_lflag;             /* local modes */
  2132. 03518   speed_t  c_ispeed;            /* input speed */
  2133. 03519   speed_t  c_ospeed;            /* output speed */
  2134. 03520   cc_t c_cc[NCCS];              /* control characters */
  2135. 03521 };
  2136. 03522
  2137. 03523 /* Values for termios c_iflag bit map.  POSIX Table 7-2. */
  2138. 03524 #define BRKINT          0x0001  /* signal interrupt on break */
  2139. 03525 #define ICRNL           0x0002  /* map CR to NL on input */
  2140. 03526 #define IGNBRK          0x0004  /* ignore break */
  2141. 03527 #define IGNCR           0x0008  /* ignore CR */
  2142. 03528 #define IGNPAR          0x0010  /* ignore characters with parity errors */
  2143. 03529 #define INLCR           0x0020  /* map NL to CR on input */
  2144. 03530 #define INPCK           0x0040  /* enable input parity check */
  2145. 03531 #define ISTRIP          0x0080  /* mask off 8th bit */
  2146. 03532 #define IXOFF           0x0100  /* enable start/stop input control */
  2147. 03533 #define IXON            0x0200  /* enable start/stop output control */
  2148. 03534 #define PARMRK          0x0400  /* mark parity errors in the input queue */
  2149. 03535
  2150. 03536 /* Values for termios c_oflag bit map.  POSIX Sec. 7.1.2.3. */
  2151. 03537 #define OPOST           0x0001  /* perform output processing */
  2152. 03538
  2153. 03539 /* Values for termios c_cflag bit map.  POSIX Table 7-3. */
  2154. 03540 #define CLOCAL          0x0001  /* ignore modem status lines */
  2155. 03541 #define CREAD           0x0002  /* enable receiver */
  2156. 03542 #define CSIZE           0x000C  /* number of bits per character */
  2157. 03543 #define         CS5     0x0000  /* if CSIZE is CS5, characters are 5 bits */
  2158. 03544 #define         CS6     0x0004  /* if CSIZE is CS6, characters are 6 bits */
  2159. 03545 #define         CS7     0x0008  /* if CSIZE is CS7, characters are 7 bits */
  2160. 03546 #define         CS8     0x000C  /* if CSIZE is CS8, characters are 8 bits */
  2161. 03547 #define CSTOPB          0x0010  /* send 2 stop bits if set, else 1 */
  2162. 03548 #define HUPCL           0x0020  /* hang up on last close */
  2163. 03549 #define PARENB          0x0040  /* enable parity on output */
  2164. .Op 39 include/termios.h
  2165. 03550 #define PARODD          0x0080  /* use odd parity if set, else even */
  2166. 03551
  2167. 03552 /* Values for termios c_lflag bit map.  POSIX Table 7-4. */
  2168. 03553 #define ECHO            0x0001  /* enable echoing of input characters */
  2169. 03554 #define ECHOE           0x0002  /* echo ERASE as backspace */
  2170. 03555 #define ECHOK           0x0004  /* echo KILL */
  2171. 03556 #define ECHONL          0x0008  /* echo NL */
  2172. 03557 #define ICANON          0x0010  /* canonical input (erase and kill enabled) */
  2173. 03558 #define IEXTEN          0x0020  /* enable extended functions */
  2174. 03559 #define ISIG            0x0040  /* enable signals */
  2175. 03560 #define NOFLSH          0x0080  /* disable flush after interrupt or quit */
  2176. 03561 #define TOSTOP          0x0100  /* send SIGTTOU (job control, not implemented*/
  2177. 03562
  2178. 03563 /* Indices into c_cc array.  Default values in parentheses. POSIX Table 7-5. */
  2179. 03564 #define VEOF               0    /* cc_c[VEOF] = EOF char (^D) */
  2180. 03565 #define VEOL               1    /* cc_c[VEOL] = EOL char (undef) */
  2181. 03566 #define VERASE             2    /* cc_c[VERASE] = ERASE char (^H) */
  2182. 03567 #define VINTR              3    /* cc_c[VINTR] = INTR char (DEL) */
  2183. 03568 #define VKILL              4    /* cc_c[VKILL] = KILL char (^U) */
  2184. 03569 #define VMIN               5    /* cc_c[VMIN] = MIN value for timer */
  2185. 03570 #define VQUIT              6    /* cc_c[VQUIT] = QUIT char (^) */
  2186. 03571 #define VTIME              7    /* cc_c[VTIME] = TIME value for timer */
  2187. 03572 #define VSUSP              8    /* cc_c[VSUSP] = SUSP (^Z, ignored) */
  2188. 03573 #define VSTART             9    /* cc_c[VSTART] = START char (^S) */
  2189. 03574 #define VSTOP             10    /* cc_c[VSTOP] = STOP char (^Q) */
  2190. 03575
  2191. 03576 #define _POSIX_VDISABLE   (cc_t)0xFF    /* You can't even generate this 
  2192. 03577                                          * character with 'normal' keyboards.
  2193. 03578                                          * But some language specific keyboards
  2194. 03579                                          * can generate 0xFF. It seems that all
  2195. 03580                                          * 256 are used, so cc_t should be a
  2196. 03581                                          * short...
  2197. 03582                                          */
  2198. 03583
  2199. 03584 /* Values for the baud rate settings.  POSIX Table 7-6. */
  2200. 03585 #define B0              0x0000  /* hang up the line */
  2201. 03586 #define B50             0x1000  /* 50 baud */
  2202. 03587 #define B75             0x2000  /* 75 baud */
  2203. 03588 #define B110            0x3000  /* 110 baud */
  2204. 03589 #define B134            0x4000  /* 134.5 baud */
  2205. 03590 #define B150            0x5000  /* 150 baud */
  2206. 03591 #define B200            0x6000  /* 200 baud */
  2207. 03592 #define B300            0x7000  /* 300 baud */
  2208. 03593 #define B600            0x8000  /* 600 baud */
  2209. 03594 #define B1200           0x9000  /* 1200 baud */
  2210. 03595 #define B1800           0xA000  /* 1800 baud */
  2211. 03596 #define B2400           0xB000  /* 2400 baud */
  2212. 03597 #define B4800           0xC000  /* 4800 baud */
  2213. 03598 #define B9600           0xD000  /* 9600 baud */
  2214. 03599 #define B19200          0xE000  /* 19200 baud */
  2215. 03600 #define B38400          0xF000  /* 38400 baud */
  2216. 03601
  2217. 03602 /* Optional actions for tcsetattr().  POSIX Sec. 7.2.1.2. */
  2218. 03603 #define TCSANOW            1    /* changes take effect immediately */
  2219. 03604 #define TCSADRAIN          2    /* changes take effect after output is done */
  2220. 03605 #define TCSAFLUSH          3    /* wait for output to finish and flush input */
  2221. 03606
  2222. 03607 /* Queue_selector values for tcflush().  POSIX Sec. 7.2.2.2. */
  2223. 03608 #define TCIFLUSH           1    /* flush accumulated input data */
  2224. 03609 #define TCOFLUSH           2    /* flush accumulated output data */
  2225. .Ep 40 include/termios.h
  2226. 03610 #define TCIOFLUSH          3    /* flush accumulated input and output data */
  2227. 03611
  2228. 03612 /* Action values for tcflow().  POSIX Sec. 7.2.2.2. */
  2229. 03613 #define TCOOFF             1    /* suspend output */
  2230. 03614 #define TCOON              2    /* restart suspended output */
  2231. 03615 #define TCIOFF             3    /* transmit a STOP character on the line */
  2232. 03616 #define TCION              4    /* transmit a START character on the line */
  2233. 03617
  2234. 03618
  2235. 03619 /* Function Prototypes. */
  2236. 03620 #ifndef _ANSI_H
  2237. 03621 #include <ansi.h>
  2238. 03622 #endif
  2239. 03623
  2240. 03624 _PROTOTYPE( int tcsendbreak, (int _fildes, int _duration)                    );
  2241. 03625 _PROTOTYPE( int tcdrain, (int _filedes)                                      );
  2242. 03626 _PROTOTYPE( int tcflush, (int _filedes, int _queue_selector)                 );
  2243. 03627 _PROTOTYPE( int tcflow, (int _filedes, int _action)                          );
  2244. 03628 _PROTOTYPE( speed_t cfgetispeed, (const struct termios *_termios_p)          );
  2245. 03629 _PROTOTYPE( speed_t cfgetospeed, (const struct termios *_termios_p)          );
  2246. 03630 _PROTOTYPE( int cfsetispeed, (struct termios *_termios_p, speed_t _speed)    );
  2247. 03631 _PROTOTYPE( int cfsetospeed, (struct termios *_termios_p, speed_t _speed)    );
  2248. 03632 _PROTOTYPE( int tcgetattr, (int _filedes, struct termios *_termios_p)        );
  2249. 03633 _PROTOTYPE( int tcsetattr, 
  2250. 03634         (int _filedes, int _opt_actions, const struct termios *_termios_p)   );
  2251. 03635
  2252. 03636 #define cfgetispeed(termios_p)          ((termios_p)->c_ispeed)
  2253. 03637 #define cfgetospeed(termios_p)          ((termios_p)->c_ospeed)
  2254. 03638 #define cfsetispeed(termios_p, speed)   ((termios_p)->c_ispeed = (speed), 0)
  2255. 03639 #define cfsetospeed(termios_p, speed)   ((termios_p)->c_ospeed = (speed), 0)
  2256. 03640
  2257. 03641 #ifdef _MINIX
  2258. 03642 /* Here are the local extensions to the POSIX standard for Minix. Posix
  2259. 03643  * conforming programs are not able to access these, and therefore they are
  2260. 03644  * only defined when a Minix program is compiled.
  2261. 03645  */
  2262. 03646
  2263. 03647 /* Extensions to the termios c_iflag bit map.  */
  2264. 03648 #define IXANY           0x0800  /* allow any key to continue ouptut */
  2265. 03649
  2266. 03650 /* Extensions to the termios c_oflag bit map. They are only active iff
  2267. 03651  * OPOST is enabled. */
  2268. 03652 #define ONLCR           0x0002  /* Map NL to CR-NL on output */
  2269. 03653 #define XTABS           0x0004  /* Expand tabs to spaces */
  2270. 03654 #define ONOEOT          0x0008  /* discard EOT's (^D) on output) */
  2271. 03655
  2272. 03656 /* Extensions to the termios c_lflag bit map.  */
  2273. 03657 #define LFLUSHO         0x0200  /* Flush output. */
  2274. 03658
  2275. 03659 /* Extensions to the c_cc array. */
  2276. 03660 #define VREPRINT          11    /* cc_c[VREPRINT] (^R) */
  2277. 03661 #define VLNEXT            12    /* cc_c[VLNEXT] (^V) */
  2278. 03662 #define VDISCARD          13    /* cc_c[VDISCARD] (^O) */
  2279. 03663
  2280. 03664 /* Extensions to baud rate settings. */
  2281. 03665 #define B57600          0x0100  /* 57600 baud */
  2282. 03666 #define B115200         0x0200  /* 115200 baud */
  2283. 03667
  2284. 03668 /* These are the default settings used by the kernel and by 'stty sane' */
  2285. 03669
  2286. .Op 41 include/termios.h
  2287. 03670 #define TCTRL_DEF       (CREAD | CS8 | HUPCL)
  2288. 03671 #define TINPUT_DEF      (BRKINT | ICRNL | IXON | IXANY)
  2289. 03672 #define TOUTPUT_DEF     (OPOST | ONLCR)
  2290. 03673 #define TLOCAL_DEF      (ISIG | IEXTEN | ICANON | ECHO | ECHOE)
  2291. 03674 #define TSPEED_DEF      B9600
  2292. 03675
  2293. 03676 #define TEOF_DEF        '4'    /* ^D */
  2294. 03677 #define TEOL_DEF        _POSIX_VDISABLE
  2295. 03678 #define TERASE_DEF      '10'   /* ^H */
  2296. 03679 #define TINTR_DEF       '177'  /* ^? */
  2297. 03680 #define TKILL_DEF       '25'   /* ^U */
  2298. 03681 #define TMIN_DEF        1
  2299. 03682 #define TQUIT_DEF       '34'   /* ^ */
  2300. 03683 #define TSTART_DEF      '21'   /* ^Q */
  2301. 03684 #define TSTOP_DEF       '23'   /* ^S */
  2302. 03685 #define TSUSP_DEF       '32'   /* ^Z */
  2303. 03686 #define TTIME_DEF       0
  2304. 03687 #define TREPRINT_DEF    '22'   /* ^R */
  2305. 03688 #define TLNEXT_DEF      '26'   /* ^V */
  2306. 03689 #define TDISCARD_DEF    '17'   /* ^O */
  2307. 03690
  2308. 03691 /* Window size. This information is stored in the TTY driver but not used.
  2309. 03692  * This can be used for screen based applications in a window environment. 
  2310. 03693  * The ioctls TIOCGWINSZ and TIOCSWINSZ can be used to get and set this 
  2311. 03694  * information.
  2312. 03695  */
  2313. 03696
  2314. 03697 struct winsize
  2315. 03698 {
  2316. 03699         unsigned short  ws_row;         /* rows, in characters */
  2317. 03700         unsigned short  ws_col;         /* columns, in characters */
  2318. 03701         unsigned short  ws_xpixel;      /* horizontal size, pixels */
  2319. 03702         unsigned short  ws_ypixel;      /* vertical size, pixels */
  2320. 03703 };
  2321. 03704 #endif /* _MINIX */
  2322. 03705
  2323. 03706 #endif /* _TERMIOS_H */
  2324. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2325. include/time.h    
  2326. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2327. 03800 /* The <time.h> header is used by the procedures that deal with time.
  2328. 03801  * Handling time is surprisingly complicated, what with GMT, local time
  2329. 03802  * and other factors.  Although the Bishop of Ussher (1581-1656) once
  2330. 03803  * calculated that based on the Bible, the world began on 12 Oct. 4004 BC
  2331. 03804  * at 9 o'clock in the morning, in the UNIX world time begins at midnight, 
  2332. 03805  * 1 Jan. 1970 GMT.  Before that, all was NULL and (void).
  2333. 03806  */
  2334. 03807
  2335. 03808 #ifndef _TIME_H
  2336. 03809 #define _TIME_H
  2337. 03810
  2338. 03811 #define CLOCKS_PER_SEC    60    /* MINIX always uses 60 Hz, even in Europe */
  2339. 03812
  2340. 03813 #ifdef _POSIX_SOURCE
  2341. 03814 #define CLK_TCK CLOCKS_PER_SEC  /* obsolescent mame for CLOCKS_PER_SEC */
  2342. .Ep 42 include/time.h
  2343. 03815 #endif
  2344. 03816
  2345. 03817 #define NULL    ((void *)0)
  2346. 03818
  2347. 03819 #ifndef _SIZE_T
  2348. 03820 #define _SIZE_T
  2349. 03821 typedef unsigned int size_t;
  2350. 03822 #endif
  2351. 03823
  2352. 03824 #ifndef _TIME_T
  2353. 03825 #define _TIME_T
  2354. 03826 typedef long time_t;            /* time in sec since 1 Jan 1970 0000 GMT */
  2355. 03827 #endif
  2356. 03828
  2357. 03829 #ifndef _CLOCK_T
  2358. 03830 #define _CLOCK_T
  2359. 03831 typedef long clock_t;           /* time in ticks since process started */
  2360. 03832 #endif
  2361. 03833
  2362. 03834 struct tm {
  2363. 03835   int tm_sec;                   /* seconds after the minute [0, 59] */
  2364. 03836   int tm_min;                   /* minutes after the hour [0, 59] */
  2365. 03837   int tm_hour;                  /* hours since midnight [0, 23] */
  2366. 03838   int tm_mday;                  /* day of the month [1, 31] */
  2367. 03839   int tm_mon;                   /* months since January [0, 11] */
  2368. 03840   int tm_year;                  /* years since 1900 */
  2369. 03841   int tm_wday;                  /* days since Sunday [0, 6] */
  2370. 03842   int tm_yday;                  /* days since January 1 [0, 365] */
  2371. 03843   int tm_isdst;                 /* Daylight Saving Time flag */
  2372. 03844 };
  2373. 03845
  2374. 03846 extern char *tzname[];
  2375. 03847
  2376. 03848 /* Function Prototypes. */
  2377. 03849 #ifndef _ANSI_H
  2378. 03850 #include <ansi.h>
  2379. 03851 #endif
  2380. 03852
  2381. 03853 _PROTOTYPE( clock_t clock, (void)                                       );
  2382. 03854 _PROTOTYPE( double difftime, (time_t _time1, time_t _time0)             );
  2383. 03855 _PROTOTYPE( time_t mktime, (struct tm *_timeptr)                        );
  2384. 03856 _PROTOTYPE( time_t time, (time_t *_timeptr)                             );
  2385. 03857 _PROTOTYPE( char *asctime, (const struct tm *_timeptr)                  );
  2386. 03858 _PROTOTYPE( char *ctime, (const time_t *_timer)                 );
  2387. 03859 _PROTOTYPE( struct tm *gmtime, (const time_t *_timer)                   );
  2388. 03860 _PROTOTYPE( struct tm *localtime, (const time_t *_timer)                );
  2389. 03861 _PROTOTYPE( size_t strftime, (char *_s, size_t _max, const char *_fmt,
  2390. 03862                                 const struct tm *_timep)                );
  2391. 03863
  2392. 03864 #ifdef _POSIX_SOURCE
  2393. 03865 _PROTOTYPE( void tzset, (void)                                          );
  2394. 03866 #endif
  2395. 03867
  2396. 03868 #ifdef _MINIX
  2397. 03869 _PROTOTYPE( int stime, (time_t *_top)                                   );
  2398. 03870 #endif
  2399. 03871
  2400. 03872 #endif /* _TIME_H */
  2401. .Op 43 include/tools.h
  2402. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2403. include/tools.h    
  2404. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2405. 03900 /* Constants describing the disk */
  2406. 03901 #define SECTOR_SIZE     512
  2407. 03902 #define SECTOR_SHIFT    9
  2408. 03903 #define RATIO           (BLOCK_SIZE / SECTOR_SIZE)
  2409. 03904 #define HRATIO          (SECTOR_SIZE / HCLICK_SIZE)
  2410. 03905 #define PARAMSEC        1       /* sector containing boot parameters */
  2411. 03906 #define DSKBASE         0x1E    /* floppy disk parameter vector */
  2412. 03907 #define DSKPARSIZE      11      /* there are this many bytes of parameters */
  2413. 03908 #define ESC             '33'   /* escape key */
  2414. 03909 #define HEADERSEG       0x0060  /* place for an array of struct exec's */
  2415. 03910 #define MINIXSEG        0x0080  /* MINIX loaded here (rounded up to a click) */
  2416. 03911 #define BOOTSEG         0x07C0  /* bootstraps are loaded here */
  2417. 03912 #define SIGNATURE       0xAA55  /* proper bootstraps have this signature */
  2418. 03913 #define SIGNATPOS       510     /* offset within bootblock */
  2419. 03914 #define FREESEG         0x0800  /* Memory from FREESEG to cseg is free */
  2420. 03915 #define MSEC_PER_TICK   55      /* 18.2 ticks per second */
  2421. 03916
  2422. 03917 /* Scan codes for four different keyboards (from kernel/keyboard.c) */
  2423. 03918 #define DUTCH_EXT_SCAN    32    /* 'd' */
  2424. 03919 #define OLIVETTI_SCAN     12    /* '=' key on olivetti */
  2425. 03920 #define STANDARD_SCAN     13    /* '=' key on IBM */
  2426. 03921 #define US_EXT_SCAN       22    /* 'u' */
  2427. 03922
  2428. 03923 /* Other */
  2429. 03924 #define ROOT_INO ((ino_t) 1)    /* Inode nr of root dir. */
  2430. 03925 #define IM_NAME_MAX       63
  2431. 03926
  2432. 03927 /* Variables */
  2433. 03928 #ifndef EXTERN
  2434. 03929 #define EXTERN extern
  2435. 03930 #endif
  2436. 03931
  2437. 03932 typedef struct vector {
  2438. 03933   u16_t offset;
  2439. 03934   u16_t segment;
  2440. 03935 } vector;
  2441. 03936
  2442. 03937 struct image_header {
  2443. 03938   char name[IM_NAME_MAX + 1];   /* Null terminated. */
  2444. 03939   struct exec process;
  2445. 03940 };
  2446. 03941
  2447. 03942 EXTERN vector rem_part;         /* boot partition table entry */
  2448. 03943 EXTERN u16_t cseg, dseg;        /* code and data segment of the boot program */
  2449. 03944 EXTERN u32_t runsize;           /* size of this program */
  2450. 03945 EXTERN u16_t device;            /* drive being booted from */
  2451. 03946 EXTERN u16_t heads, sectors;    /* the drive's number of heads and sectors */
  2452. 03947 extern u16_t eqscancode;        /* Set by peek/getch() if they see a '=' */
  2453. 03948
  2454. 03949 /* Sticky attributes */
  2455. 03950 #define E_SPECIAL       0x01    /* These are known to the program */
  2456. 03951 #define E_DEV           0x02    /* The value is a device name */
  2457. 03952 #define E_RESERVED      0x04    /* May not be set by user, e.g. scancode */
  2458. 03953 #define E_STICKY        0x07    /* Don't go once set */
  2459. 03954
  2460. .Ep 44 include/tools.h
  2461. 03955 /* Volatile attributes */
  2462. 03956 #define E_VAR           0x08    /* Variable */
  2463. 03957 #define E_FUNCTION      0x10    /* Function definition */
  2464. 03958
  2465. 03959 typedef struct environment {
  2466. 03960   struct environment *next;
  2467. 03961   char flags;
  2468. 03962   char *name;                   /* name = value */
  2469. 03963   char *arg;                    /* name(arg) {value} */
  2470. 03964   char *value;
  2471. 03965   char *defval;                 /* Safehouse for default values */
  2472. 03966 } environment;
  2473. 03967
  2474. 03968 /* External variables */
  2475. 03969 EXTERN environment *env;        /* Lists the environment */
  2476. 03970 EXTERN int fsok;                /* True if the boot device contains an FS */
  2477. 03971 EXTERN u32_t lowsec;            /* Offset to the file system on the boot dev */
  2478. 03972
  2479. 03973 /* Prototypes */
  2480. 03974 _PROTOTYPE( off_t r_super, (void));
  2481. 03975 _PROTOTYPE( void r_stat, (Ino_t _inum, struct stat *_stp ));
  2482. 03976 _PROTOTYPE( ino_t r_readdir, (char *_name ));
  2483. 03977 _PROTOTYPE( off_t r_vir2abs, (off_t _virblk ));
  2484. 03978 _PROTOTYPE( ino_t r_lookup, (Ino_t _cwd, char *_path ));
  2485. 03979
  2486. 03980 #ifdef _MONHEAD
  2487. 03981 _PROTOTYPE( void readerr, (off_t _sec, int _err ));
  2488. 03982 _PROTOTYPE( int numprefix, (char *_s, char **_ps ));
  2489. 03983 _PROTOTYPE( int numeric, (char *_s ));
  2490. 03984 _PROTOTYPE( dev_t name2dev, (char *_name ));
  2491. 03985 _PROTOTYPE( int delay, (char *_msec ));
  2492. 03986 _PROTOTYPE( char *unix_err, (int _err ));
  2493. 03987 _PROTOTYPE( void init_cache, (void));
  2494. 03988 _PROTOTYPE( void invalidate_cache, (void));
  2495. 03989 _PROTOTYPE( char *b_value, (char *_name ));
  2496. 03990 _PROTOTYPE( void raw_copy, (int _doff, int _dseg, int _soff, int _sseg,
  2497. 03991                                                 int _count));
  2498. 03992 _PROTOTYPE( void raw_clear, (int _off, int _seg, int _count));
  2499. 03993 _PROTOTYPE( void bootstrap, (int _device, int _partoff, int _partseg));
  2500. 03994
  2501. 03995 _PROTOTYPE( long a2l, (char *_a ));
  2502. 03996 _PROTOTYPE( char *ul2a, (u32_t _n ));
  2503. 03997 _PROTOTYPE( char *u2a, (int _n1 ));
  2504. 03998
  2505. 03999 /* Functions defined in monhead.s and usable by other files. */
  2506. 04000 _PROTOTYPE( void reset_video, (int color));
  2507. 04001 _PROTOTYPE( int dev_geometry, (void));
  2508. 04002 _PROTOTYPE( u16_t get_ext_memsize, (void));
  2509. 04003 _PROTOTYPE( u16_t get_low_memsize, (void));
  2510. 04004 _PROTOTYPE( u16_t get_processor, (void));
  2511. 04005 _PROTOTYPE( u32_t get_tick, (void));
  2512. 04006 _PROTOTYPE( u16_t get_video, (void));
  2513. 04007 _PROTOTYPE( u16_t get_word, (int _off, int _seg));
  2514. 04008 _PROTOTYPE( int getchar, (void));
  2515. 04009 _PROTOTYPE( void minix, (void));
  2516. 04010 _PROTOTYPE( void minix86, (int _kcs, int _kds, char *_bpar, int _psize));
  2517. 04011 _PROTOTYPE( void minix386, (int _kcs, int _kds, char *_bpar, int _psize));
  2518. 04012 _PROTOTYPE( int peekchar, (void));
  2519. 04013 _PROTOTYPE( void put_word, (int _off, int _seg, int _word));
  2520. 04014 _PROTOTYPE( int putchar, (char _c));
  2521. .Op 45 include/tools.h
  2522. 04015 _PROTOTYPE( int readsectors, (int _off, int _seg, off_t _adr, int _ct));
  2523. 04016 _PROTOTYPE( void reboot, (void));
  2524. 04017 _PROTOTYPE( void relocate, (void));
  2525. 04018 _PROTOTYPE( int writesectors, (int _off, int _seg, off_t _adr, int _ct));
  2526. 04019 #endif
  2527. 04020
  2528. 04021
  2529. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2530. include/ttyent.h    
  2531. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2532. 04100 /* <ttyent.h> is used by getttyent(3).                  Author: Kees J. Bot
  2533. 04101  *                                                              28 Oct 1995
  2534. 04102  */
  2535. 04103 #ifndef _TTYENT_H
  2536. 04104 #define _TTYENT_H
  2537. 04105
  2538. 04106 #ifndef _ANSI_H
  2539. 04107 #include <ansi.h>
  2540. 04108 #endif
  2541. 04109
  2542. 04110 struct ttyent {
  2543. 04111         char    *ty_name;       /* Name of the terminal device. */
  2544. 04112         char    *ty_type;       /* Terminal type name (termcap(3)). */
  2545. 04113         char    **ty_getty;     /* Program to run, normally getty. */
  2546. 04114         char    **ty_init;      /* Initialization command, normally stty. */
  2547. 04115 };
  2548. 04116
  2549. 04117 _PROTOTYPE( struct ttyent *getttyent, (void)                            );
  2550. 04118 _PROTOTYPE( struct ttyent *getttynam, (const char *_name)               );
  2551. 04119 _PROTOTYPE( int setttyent, (void)                                       );
  2552. 04120 _PROTOTYPE( void endttyent, (void)                                      );
  2553. 04121
  2554. 04122 #endif /* _TTYENT_H */
  2555. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2556. include/unistd.h    
  2557. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2558. 04200 /* The <unistd.h> header contains a few miscellaneous manifest constants. */
  2559. 04201
  2560. 04202 #ifndef _UNISTD_H
  2561. 04203 #define _UNISTD_H
  2562. 04204
  2563. 04205 /* POSIX requires size_t and ssize_t in <unistd.h> and elsewhere. */
  2564. 04206 #ifndef _SIZE_T
  2565. 04207 #define _SIZE_T
  2566. 04208 typedef unsigned int size_t;
  2567. 04209 #endif
  2568. 04210
  2569. 04211 #ifndef _SSIZE_T
  2570. 04212 #define _SSIZE_T
  2571. 04213 typedef int ssize_t;
  2572. 04214 #endif
  2573. .Ep 46 include/unistd.h
  2574. 04215
  2575. 04216 /* Values used by access().  POSIX Table 2-8. */
  2576. 04217 #define F_OK               0    /* test if file exists */
  2577. 04218 #define X_OK               1    /* test if file is executable */
  2578. 04219 #define W_OK               2    /* test if file is writable */
  2579. 04220 #define R_OK               4    /* test if file is readable */
  2580. 04221
  2581. 04222 /* Values used for whence in lseek(fd, offset, whence).  POSIX Table 2-9. */
  2582. 04223 #define SEEK_SET           0    /* offset is absolute  */
  2583. 04224 #define SEEK_CUR           1    /* offset is relative to current position */
  2584. 04225 #define SEEK_END           2    /* offset is relative to end of file */
  2585. 04226
  2586. 04227 /* This value is required by POSIX Table 2-10. */
  2587. 04228 #define _POSIX_VERSION 199009L  /* which standard is being conformed to */
  2588. 04229
  2589. 04230 /* These three definitions are required by POSIX Sec. 8.2.1.2. */
  2590. 04231 #define STDIN_FILENO       0    /* file descriptor for stdin */
  2591. 04232 #define STDOUT_FILENO      1    /* file descriptor for stdout */
  2592. 04233 #define STDERR_FILENO      2    /* file descriptor for stderr */
  2593. 04234
  2594. 04235 #ifdef _MINIX
  2595. 04236 /* How to exit the system. */
  2596. 04237 #define RBT_HALT           0
  2597. 04238 #define RBT_REBOOT         1
  2598. 04239 #define RBT_PANIC          2    /* for servers */
  2599. 04240 #define RBT_MONITOR        3    /* let the monitor do this */
  2600. 04241 #define RBT_RESET          4    /* hard reset the system */
  2601. 04242 #endif
  2602. 04243
  2603. 04244 /* NULL must be defined in <unistd.h> according to POSIX Sec. 2.7.1. */
  2604. 04245 #define NULL    ((void *)0)
  2605. 04246
  2606. 04247 /* The following relate to configurable system variables. POSIX Table 4-2. */
  2607. 04248 #define _SC_ARG_MAX             1
  2608. 04249 #define _SC_CHILD_MAX           2
  2609. 04250 #define _SC_CLOCKS_PER_SEC      3
  2610. 04251 #define _SC_CLK_TCK             3
  2611. 04252 #define _SC_NGROUPS_MAX         4
  2612. 04253 #define _SC_OPEN_MAX            5
  2613. 04254 #define _SC_JOB_CONTROL         6
  2614. 04255 #define _SC_SAVED_IDS           7
  2615. 04256 #define _SC_VERSION             8
  2616. 04257 #define _SC_STREAM_MAX          9
  2617. 04258 #define _SC_TZNAME_MAX         10
  2618. 04259
  2619. 04260 /* The following relate to configurable pathname variables. POSIX Table 5-2. */
  2620. 04261 #define _PC_LINK_MAX            1       /* link count */
  2621. 04262 #define _PC_MAX_CANON           2       /* size of the canonical input queue */
  2622. 04263 #define _PC_MAX_INPUT           3       /* type-ahead buffer size */
  2623. 04264 #define _PC_NAME_MAX            4       /* file name size */
  2624. 04265 #define _PC_PATH_MAX            5       /* pathname size */
  2625. 04266 #define _PC_PIPE_BUF            6       /* pipe size */
  2626. 04267 #define _PC_NO_TRUNC            7       /* treatment of long name components */
  2627. 04268 #define _PC_VDISABLE            8       /* tty disable */
  2628. 04269 #define _PC_CHOWN_RESTRICTED    9       /* chown restricted or not */
  2629. 04270
  2630. 04271 /* POSIX defines several options that may be implemented or not, at the
  2631. 04272  * implementer's whim.  This implementer has made the following choices:
  2632. 04273  *
  2633. 04274  * _POSIX_JOB_CONTROL       not defined:        no job control
  2634. .Op 47 include/unistd.h
  2635. 04275  * _POSIX_SAVED_IDS         not defined:        no saved uid/gid
  2636. 04276  * _POSIX_NO_TRUNC          defined as -1:      long path names are truncated
  2637. 04277  * _POSIX_CHOWN_RESTRICTED  defined:            you can't give away files
  2638. 04278  * _POSIX_VDISABLE          defined:            tty functions can be disabled
  2639. 04279  */
  2640. 04280 #define _POSIX_NO_TRUNC       (-1)
  2641. 04281 #define _POSIX_CHOWN_RESTRICTED  1
  2642. 04282
  2643. 04283 /* Function Prototypes. */
  2644. 04284 #ifndef _ANSI_H
  2645. 04285 #include <ansi.h>
  2646. 04286 #endif
  2647. 04287
  2648. 04288 _PROTOTYPE( void _exit, (int _status)                                   );
  2649. 04289 _PROTOTYPE( int access, (const char *_path, int _amode)                 );
  2650. 04290 _PROTOTYPE( unsigned int alarm, (unsigned int _seconds)                 );
  2651. 04291 _PROTOTYPE( int chdir, (const char *_path)                              );
  2652. 04292 _PROTOTYPE( int chown, (const char *_path, Uid_t _owner, Gid_t _group)  );
  2653. 04293 _PROTOTYPE( int close, (int _fd)                                        );
  2654. 04294 _PROTOTYPE( char *ctermid, (char *_s)                                   );
  2655. 04295 _PROTOTYPE( char *cuserid, (char *_s)                                   );
  2656. 04296 _PROTOTYPE( int dup, (int _fd)                                          );
  2657. 04297 _PROTOTYPE( int dup2, (int _fd, int _fd2)                               );
  2658. 04298 _PROTOTYPE( int execl, (const char *_path, const char *_arg, ...)       );
  2659. 04299 _PROTOTYPE( int execle, (const char *_path, const char *_arg, ...)      );
  2660. 04300 _PROTOTYPE( int execlp, (const char *_file, const char *arg, ...)       );
  2661. 04301 _PROTOTYPE( int execv, (const char *_path, char *const _argv[])         );
  2662. 04302 _PROTOTYPE( int execve, (const char *_path, char *const _argv[], 
  2663. 04303                                                 char *const _envp[])    );
  2664. 04304 _PROTOTYPE( int execvp, (const char *_file, char *const _argv[])        );
  2665. 04305 _PROTOTYPE( pid_t fork, (void)                                          );
  2666. 04306 _PROTOTYPE( long fpathconf, (int _fd, int _name)                        );
  2667. 04307 _PROTOTYPE( char *getcwd, (char *_buf, size_t _size)                    );
  2668. 04308 _PROTOTYPE( gid_t getegid, (void)                                       );
  2669. 04309 _PROTOTYPE( uid_t geteuid, (void)                                       );
  2670. 04310 _PROTOTYPE( gid_t getgid, (void)                                        );
  2671. 04311 _PROTOTYPE( int getgroups, (int _gidsetsize, gid_t _grouplist[])        );
  2672. 04312 _PROTOTYPE( char *getlogin, (void)                                      );
  2673. 04313 _PROTOTYPE( pid_t getpgrp, (void)                                       );
  2674. 04314 _PROTOTYPE( pid_t getpid, (void)                                        );
  2675. 04315 _PROTOTYPE( pid_t getppid, (void)                                       );
  2676. 04316 _PROTOTYPE( uid_t getuid, (void)                                        );
  2677. 04317 _PROTOTYPE( int isatty, (int _fd)                                       );
  2678. 04318 _PROTOTYPE( int link, (const char *_existing, const char *_new)         );
  2679. 04319 _PROTOTYPE( off_t lseek, (int _fd, off_t _offset, int _whence)          );
  2680. 04320 _PROTOTYPE( long pathconf, (const char *_path, int _name)               );
  2681. 04321 _PROTOTYPE( int pause, (void)                                           );
  2682. 04322 _PROTOTYPE( int pipe, (int _fildes[2])                                  );
  2683. 04323 _PROTOTYPE( ssize_t read, (int _fd, void *_buf, size_t _n)              );
  2684. 04324 _PROTOTYPE( int rmdir, (const char *_path)                              );
  2685. 04325 _PROTOTYPE( int setgid, (Gid_t _gid)                                    );
  2686. 04326 _PROTOTYPE( int setpgid, (pid_t _pid, pid_t _pgid)                      );
  2687. 04327 _PROTOTYPE( pid_t setsid, (void)                                        );
  2688. 04328 _PROTOTYPE( int setuid, (Uid_t _uid)                                    );
  2689. 04329 _PROTOTYPE( unsigned int sleep, (unsigned int _seconds)                 );
  2690. 04330 _PROTOTYPE( long sysconf, (int _name)                                   );
  2691. 04331 _PROTOTYPE( pid_t tcgetpgrp, (int _fd)                                  );
  2692. 04332 _PROTOTYPE( int tcsetpgrp, (int _fd, pid_t _pgrp_id)                    );
  2693. 04333 _PROTOTYPE( char *ttyname, (int _fd)                                    );
  2694. 04334 _PROTOTYPE( int unlink, (const char *_path)                             );
  2695. .Ep 48 include/unistd.h
  2696. 04335 _PROTOTYPE( ssize_t write, (int _fd, const void *_buf, size_t _n)       );
  2697. 04336
  2698. 04337 #ifdef _MINIX
  2699. 04338 _PROTOTYPE( int brk, (char *_addr)                                      );
  2700. 04339 _PROTOTYPE( int chroot, (const char *_name)                             );
  2701. 04340 _PROTOTYPE( int mknod, (const char *_name, Mode_t _mode, Dev_t _addr)   );
  2702. 04341 _PROTOTYPE( int mknod4, (const char *_name, Mode_t _mode, Dev_t _addr,
  2703. 04342             long _size)                                                 );
  2704. 04343 _PROTOTYPE( char *mktemp, (char *_template)                             );
  2705. 04344 _PROTOTYPE( int mount, (char *_spec, char *_name, int _flag)            );
  2706. 04345 _PROTOTYPE( long ptrace, (int _req, pid_t _pid, long _addr, long _data) );
  2707. 04346 _PROTOTYPE( char *sbrk, (int _incr)                                     );
  2708. 04347 _PROTOTYPE( int sync, (void)                                            );
  2709. 04348 _PROTOTYPE( int umount, (const char *_name)                             );
  2710. 04349 _PROTOTYPE( int reboot, (int _how, ...)                                 );
  2711. 04350 _PROTOTYPE( int gethostname, (char *_hostname, size_t _len)             );
  2712. 04351 _PROTOTYPE( int getdomainname, (char *_domain, size_t _len)             );
  2713. 04352 _PROTOTYPE( int ttyslot, (void)                                         );
  2714. 04353 _PROTOTYPE( int fttyslot, (int _fd)                                     );
  2715. 04354 _PROTOTYPE( char *crypt, (const char *_key, const char *_salt)          );
  2716. 04355 #endif
  2717. 04356
  2718. 04357 #endif /* _UNISTD_H */
  2719. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2720. include/utime.h    
  2721. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2722. 04400 /* The <utime.h> header is used for the utime() system call. */
  2723. 04401
  2724. 04402 #ifndef _UTIME_H
  2725. 04403 #define _UTIME_H
  2726. 04404
  2727. 04405 struct utimbuf {
  2728. 04406   time_t actime;                /* access time */
  2729. 04407   time_t modtime;               /* modification time */
  2730. 04408 };
  2731. 04409
  2732. 04410
  2733. 04411 /* Function Prototypes. */
  2734. 04412 #ifndef _ANSI_H
  2735. 04413 #include <ansi.h>
  2736. 04414 #endif
  2737. 04415
  2738. 04416 _PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times)     );
  2739. 04417
  2740. 04418 #endif /* _UTIME_H */
  2741. .Op 49 include/utmp.h
  2742. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2743. include/utmp.h    
  2744. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2745. 04500 /* The <utmp.h> header is used by init, login, who, etc. */
  2746. 04501
  2747. 04502 #ifndef _UTMP_H
  2748. 04503 #define _UTMP_H
  2749. 04504
  2750. 04505 #define WTMP  "/usr/adm/wtmp"   /* the login history file */
  2751. 04506 #define BTMP  "/usr/adm/btmp"   /* the bad-login history file */
  2752. 04507 #define UTMP  "/etc/utmp"       /* the user accouting file */
  2753. 04508
  2754. 04509
  2755. 04510 struct utmp {
  2756. 04511   char ut_user[8];              /* user name */
  2757. 04512   char ut_id[4];                /* /etc/inittab ID */
  2758. 04513   char ut_line[12];             /* terminal name */
  2759. 04514   char ut_host[16];             /* host name, when remote */
  2760. 04515   short ut_pid;                 /* process id */
  2761. 04516   short int ut_type;            /* type of entry */
  2762. 04517   long ut_time;                 /* login/logout time */
  2763. 04518 };
  2764. 04519
  2765. 04520 #define ut_name ut_user         /* for compatibility with other systems */
  2766. 04521
  2767. 04522
  2768. 04523 /* Definitions for ut_type. */
  2769. 04524 #define RUN_LVL            1    /* this is a RUN_LEVEL record */
  2770. 04525 #define BOOT_TIME          2    /* this is a REBOOT record */
  2771. 04526 #define INIT_PROCESS       5    /* this process was spawned by INIT */
  2772. 04527 #define LOGIN_PROCESS      6    /* this is a 'getty' process waiting */
  2773. 04528 #define USER_PROCESS       7    /* any other user process */
  2774. 04529 #define DEAD_PROCESS       8    /* this process has died (wtmp only) */
  2775. 04530
  2776. 04531 #endif /* _UTMP_H */
  2777. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2778. include/sys/asynchio.h    
  2779. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2780. 04600 /*      asynchio.h - Asynchronous I/O                   Author: Kees J. Bot
  2781. 04601  *                                                              26 Jan 1995
  2782. 04602  * This is just a fake async I/O library to be used for programs
  2783. 04603  * written for Minix-vmd that must also run under standard Minix.
  2784. 04604  * This limits the number of ugly #ifdefs somewhat.  The programs must
  2785. 04605  * be restricted to performing just one service, of course.
  2786. 04606  */
  2787. 04607 #ifndef _SYS__ASYNCHIO_H
  2788. 04608 #define _SYS__ASYNCHIO_H
  2789. 04609
  2790. 04610 typedef int asynchio_t;
  2791. 04611
  2792. 04612 #define ASYN_NONBLOCK   0x01
  2793. 04613
  2794. 04614 struct timeval { long tv_sec, tv_usec; };
  2795. .Ep 50 include/sys/asynchio.h
  2796. 04615
  2797. 04616 #define EINPROGRESS     EINTR
  2798. 04617
  2799. 04618 void asyn_init(asynchio_t *_asyn);
  2800. 04619 ssize_t asyn_read(asynchio_t *_asyn, int _fd, void *_buf, size_t _len);
  2801. 04620 ssize_t asyn_write(asynchio_t *_asyn, int _fd, const void *_buf, size_t _len);
  2802. 04621 int asyn_ioctl(asynchio_t *_asyn, int _fd, unsigned long _request, void *_data);
  2803. 04622 int asyn_wait(asynchio_t *_asyn, int _flags, struct timeval *to);
  2804. 04623 int asyn_synch(asynchio_t *_asyn, int _fd);
  2805. 04624 int asyn_close(asynchio_t *_asyn, int _fd);
  2806. 04625
  2807. 04626 #endif /* _SYS__ASYNCHIO_H */
  2808. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2809. include/sys/dir.h    
  2810. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2811. 04700 /* The <dir.h> header gives the layout of a directory. */
  2812. 04701
  2813. 04702 #ifndef _DIR_H
  2814. 04703 #define _DIR_H
  2815. 04704
  2816. 04705 #define DIRBLKSIZ       512     /* size of directory block */
  2817. 04706
  2818. 04707 #ifndef DIRSIZ
  2819. 04708 #define DIRSIZ  14