summaryrefslogtreecommitdiffstats
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 f2d7e672..dc436d8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
- (stevesk) Create contrib/cygwin/ directory; patch from
Corinna Vinschen <vinschen@redhat.com>
- (bal) Resolved more $xno and $xyes issues in configure.in
+ - (bal) next-posix.h - spelling and forgot a prototype
20001028
- (djm) fix select hack in serverloop.c from Philippe WILLEM
diff --git a/next-posix.h b/next-posix.h
index bd815af4..96733230 100644
--- a/next-posix.h
+++ b/next-posix.h
@@ -28,7 +28,7 @@
#include <sys/dir.h>
-/* NeXT's Readdir() is BSD (struct direct) not POSIX (struct dirent) */
+/* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */
#define dirent direct
/* FILE */
@@ -48,7 +48,7 @@
#define WCOREFLAG 0x80
#define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)
-/* Swap out the next 'BSDish' wait() for a more POSIX complient one */
+/* Swap out NeXT's BSD wait() for a more POSIX complient one */
pid_t posix_wait(int *status);
#define wait(a) posix_wait(a)
@@ -63,6 +63,6 @@ int tcsetpgrp(int fd, pid_t pgrp);
speed_t cfgetospeed(const struct termios *t);
speed_t cfgetispeed(const struct termios *t);
int cfsetospeed(struct termios *t, int speed);
-
+int cfsetispeed(struct termios *t, int speed);
#endif /* HAVE_NEXT */
#endif /* _NEXT_POSIX_H */