diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-02-06 13:46:17 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-02-06 13:46:17 -0500 |
commit | b358e014f7e392351ab9209aadb16c466c84f016 (patch) | |
tree | 9e168b23b11affa3202c63326bb42eba46061d78 /src/c | |
parent | 7fefefde8167e780653f23f36d7cd9c64a00603e (diff) |
AC_USE_SYSTEM_EXTENSIONS replaces the need for hacky #defines at starts of C files
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/fastcgi.c | 2 | ||||
-rw-r--r-- | src/c/http.c | 2 | ||||
-rw-r--r-- | src/c/request.c | 2 | ||||
-rw-r--r-- | src/c/urweb.c | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/src/c/fastcgi.c b/src/c/fastcgi.c index 092cd056..5ea7a541 100644 --- a/src/c/fastcgi.c +++ b/src/c/fastcgi.c @@ -1,5 +1,3 @@ -#define _GNU_SOURCE - #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/src/c/http.c b/src/c/http.c index 80131674..63586440 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -1,5 +1,3 @@ -#define _GNU_SOURCE - #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/src/c/request.c b/src/c/request.c index 61117485..262683b9 100644 --- a/src/c/request.c +++ b/src/c/request.c @@ -1,5 +1,3 @@ -#define _GNU_SOURCE - #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/src/c/urweb.c b/src/c/urweb.c index 23887c2e..40cd18d2 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -1,5 +1,3 @@ -#define _XOPEN_SOURCE 1000 - #include <stdlib.h> #include <stdio.h> #include <string.h> |