diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-10-22 22:15:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-10-22 22:15:50 +0000 |
commit | 78000dbd5db927c768eac2edc808b58334405cc6 (patch) | |
tree | 2e164819a134fb5dbd7ed757117ce3f1060e5614 | |
parent | b585f411cde3419af383bd270aa801cdb8dc6e5c (diff) |
An SGI (IRIX) compiler doesn't like indended #-instructions, so they're all
in column zero now!
-rw-r--r-- | src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index 460785b00..a51d6b292 100644 --- a/src/main.c +++ b/src/main.c @@ -61,11 +61,11 @@ #endif #ifdef HAVE_UTIME_H - #include <utime.h> +#include <utime.h> #else - #ifdef HAVE_SYS_UTIME_H - #include <sys/utime.h> - #endif +#ifdef HAVE_SYS_UTIME_H +#include <sys/utime.h> +#endif #endif /* The last #include file should be: */ |