summaryrefslogtreecommitdiff
path: root/next-posix.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-10-30 05:33:55 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-10-30 05:33:55 +0000
commit2791cd5254283ac9b245061ed1760b7f83d84137 (patch)
tree9a212e172e28cf2ebe502b04b0c5ca0d18995fae /next-posix.h
parent23e1371d9d3893afd4b32cd408971d830b594746 (diff)
- (bal) next-posix.h - spelling and forgot a prototype
Diffstat (limited to 'next-posix.h')
-rw-r--r--next-posix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/next-posix.h b/next-posix.h
index bd815af43..967332308 100644
--- a/next-posix.h
+++ b/next-posix.h
@@ -28,7 +28,7 @@
28 28
29#include <sys/dir.h> 29#include <sys/dir.h>
30 30
31/* NeXT's Readdir() is BSD (struct direct) not POSIX (struct dirent) */ 31/* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */
32#define dirent direct 32#define dirent direct
33 33
34/* FILE */ 34/* FILE */
@@ -48,7 +48,7 @@
48#define WCOREFLAG 0x80 48#define WCOREFLAG 0x80
49#define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG) 49#define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)
50 50
51/* Swap out the next 'BSDish' wait() for a more POSIX complient one */ 51/* Swap out NeXT's BSD wait() for a more POSIX complient one */
52pid_t posix_wait(int *status); 52pid_t posix_wait(int *status);
53#define wait(a) posix_wait(a) 53#define wait(a) posix_wait(a)
54 54
@@ -63,6 +63,6 @@ int tcsetpgrp(int fd, pid_t pgrp);
63speed_t cfgetospeed(const struct termios *t); 63speed_t cfgetospeed(const struct termios *t);
64speed_t cfgetispeed(const struct termios *t); 64speed_t cfgetispeed(const struct termios *t);
65int cfsetospeed(struct termios *t, int speed); 65int cfsetospeed(struct termios *t, int speed);
66 66int cfsetispeed(struct termios *t, int speed);
67#endif /* HAVE_NEXT */ 67#endif /* HAVE_NEXT */
68#endif /* _NEXT_POSIX_H */ 68#endif /* _NEXT_POSIX_H */