Commit ab5809b5 by Richard Stallman

*** empty log message ***

From-SVN: r671
parent 5130a5cc
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
In EPROP, avoid a <= old if bad is set, Richard Stallman, May 91. In EPROP, avoid a <= old if bad is set, Richard Stallman, May 91.
Use gstddef.h, not stddef.h, Richard Stallman, Nov 91. Use gstddef.h, not stddef.h, Richard Stallman, Nov 91.
Don't declare malloc, instead cast the value, Richard Stallman, Nov 91. Don't declare malloc, instead cast the value, Richard Stallman, Nov 91.
Include sys/types.h before signal.h, Apr 92.
COMPILING COMPILING
With luck and a following wind, just the following will work: With luck and a following wind, just the following will work:
...@@ -378,6 +379,7 @@ ...@@ -378,6 +379,7 @@
#ifdef NO_SIG #ifdef NO_SIG
#define jmp_buf int #define jmp_buf int
#else #else
#include <sys/types.h>
#include <signal.h> #include <signal.h>
#include <setjmp.h> #include <setjmp.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment