diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-11 14:36:34 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-11 14:36:34 +0200 |
| commit | 4dd1c31dc70e97015f6bff4344de30742db073e8 (patch) | |
| tree | 6dc657f2475cf8f1c6b74c636e633505467a91f5 | |
| parent | 2e13e821f89d38ebb3b6b90d44f1a40f9c61fb31 (diff) | |
| download | ngircd-4dd1c31dc70e97015f6bff4344de30742db073e8.tar.gz ngircd-4dd1c31dc70e97015f6bff4344de30742db073e8.zip | |
Don't check type.h availability, it is required
| -rw-r--r-- | src/ngircd/conf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index 627e6d3f..5853926e 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -18,6 +18,7 @@ #include "imp.h" #include <assert.h> +#include <ctype.h> #include <errno.h> #ifdef PROTOTYPES # include <stdarg.h> @@ -34,9 +35,6 @@ #include <sys/types.h> #include <unistd.h> -#ifdef HAVE_CTYPE_H -# include <ctype.h> -#endif #include "array.h" #include "ngircd.h" |