diff options
author | dos-reis <gdr@axiomatics.org> | 2009-02-19 18:41:02 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2009-02-19 18:41:02 +0000 |
commit | 7e8519d4009328b4ea1ed3736f9ef3a2d265a3ce (patch) | |
tree | 466b759bfd2a467a5ae5711bc88de012d4e37002 /src/lib | |
parent | d5a7308fdca3f00c9e9825e1171e9b6fe6ec2273 (diff) | |
download | open-axiom-7e8519d4009328b4ea1ed3736f9ef3a2d265a3ce.tar.gz |
2009-02-19 Aleksej Saushev <asau@inbox.ru>
* configure.ac.pamphlet: Fix indention of CPP directives. Include
<sys/types.h> when testing for openpty.
src/ChangeLog
2009-02-19 Gabriel Dos Reis <gdr@cs.tamu.edu>
* interp/sys-utility.boot (%hostByteOrder): Make a function.
* algebra/system.spad.pamphlet (hostByteOrder$System): Adjust call.
2009-02-19 Aleksej Saushev <asau@inbox.ru>
* lib/openpty.c: Include <sys/types.h> when testing for openpty.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/openpty.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/openpty.c b/src/lib/openpty.c index 5cf36c34..920f8ab1 100644 --- a/src/lib/openpty.c +++ b/src/lib/openpty.c @@ -51,6 +51,7 @@ # include <termios.h> #endif #ifdef HAVE_LIBUTIL_H +# include <sys/types.h> # include <libutil.h> #endif |