Skip to content
Snippets Groups Projects
Commit 4ebe7839 authored by sof's avatar sof
Browse files

[project @ 1997-05-18 04:28:42 by sof]

2.03 update to get around gcc-2.7.1 header silly
parent 7c948a00
No related merge requests found
......@@ -56,6 +56,17 @@ void _stgAssert PROTO((char *, unsigned int));
_POSIX2_VERSION
_POSIX_4SOURCE
*/
/* Bogus use of non-existent variable POSIX_C_SOURCE in the supplied header files
for gcc-2.7.1 on Solaris forces us to define it: (this strikes when using st_atime
and friends in <sys/stat.h> )
*/
#if (__GNUC__ == 2) && (__GNUC_MINOR__ == 7)
/* sigh, not possible to get at bugfix release number (fixed in 2.7.2) */
#define POSIX_C_SOURCE _POSIX_C_SOURCE
#endif
#include <unistd.h>
#include <signal.h>
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment