]> diplodocus.org Git - nmh/blob - docs/historical/mh-6.8.5/uip/RCS/ttyd.h,v
sbr/mts.c: Delete mmdlm2; use same-valued mmdlm1 instead.
[nmh] / docs / historical / mh-6.8.5 / uip / RCS / ttyd.h,v
1 head 1.2;
2 access;
3 symbols;
4 locks; strict;
5 comment @ * @;
6
7
8 1.2
9 date 93.08.25.17.29.12; author jromine; state Exp;
10 branches;
11 next 1.1;
12
13 1.1
14 date 93.08.25.17.28.37; author jromine; state Exp;
15 branches;
16 next ;
17
18
19 desc
20 @@
21
22
23 1.2
24 log
25 @off_t fixes for BSD44
26 @
27 text
28 @/* ttyd.h - definitions for ttyd */
29 #ifndef lint
30 static char Id[] = "@@(#)$Id:$";
31 #endif
32
33 /* The Regents of the University of California wish to make it known that:
34 *
35 *
36 * DISCLAIMER
37 *
38 * "Although each program has been tested by its contributor, no
39 * warranty, express or implied, is made by the contributor or the
40 * University of California, as to the accuracy and functioning of
41 * the program and related program material, nor shall the fact of
42 * distribution constitute any such warranty, and no responsibility
43 * is assumed by the contributor or the University of California in
44 * connection herewith."
45 *
46 */
47
48 /* \f */
49
50 #define MAIL "/bin/mail"
51
52 #define SMLWAIT 60 /* seconds for select() */
53
54
55 #define NOTOK (-1)
56 #define OK 0
57 #define DONE 1
58
59 #define TRUE 1
60 #define FALSE 0
61
62 #define serror \
63 (errno > 0 && errno < sys_nerr ? sys_errlist[errno] : "Unknown error")
64
65 extern int errno;
66 #ifndef BSD44
67 extern int sys_nerr;
68 extern char *sys_errlist[];
69 extern char *sys_siglist[];
70 #endif
71 @
72
73
74 1.1
75 log
76 @Initial revision
77 @
78 text
79 @d2 3
80 d39 1
81 d43 1
82 @