summaryrefslogtreecommitdiff
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
parent23e1371d9d3893afd4b32cd408971d830b594746 (diff)
- (bal) next-posix.h - spelling and forgot a prototype
-rw-r--r--ChangeLog1
-rw-r--r--next-posix.h6
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f2d7e6725..dc436d8f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 - (stevesk) Create contrib/cygwin/ directory; patch from 3 - (stevesk) Create contrib/cygwin/ directory; patch from
4 Corinna Vinschen <vinschen@redhat.com> 4 Corinna Vinschen <vinschen@redhat.com>
5 - (bal) Resolved more $xno and $xyes issues in configure.in 5 - (bal) Resolved more $xno and $xyes issues in configure.in
6 - (bal) next-posix.h - spelling and forgot a prototype
6 7
720001028 820001028
8 - (djm) fix select hack in serverloop.c from Philippe WILLEM 9 - (djm) fix select hack in serverloop.c from Philippe WILLEM
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 */