summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@irssi.org>2008-03-14 10:34:34 +0000
committerexg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564>2008-03-14 10:34:34 +0000
commitaa602a00ac2d8dfd137cd05a16e36451aff2ce27 (patch)
tree46968907047da0e490cbe9c4eaff884b139b7f58 /src/common.h
parente1713c17cbf59ad13682f01e9b7b1907ad3a6078 (diff)
downloadirssi-aa602a00ac2d8dfd137cd05a16e36451aff2ce27.zip
Do not check for standard C headers.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4761 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/common.h b/src/common.h
index 6db1c1bd..3c4f2723 100644
--- a/src/common.h
+++ b/src/common.h
@@ -16,12 +16,8 @@
#include <stddef.h>
#include <stdarg.h>
#include <ctype.h>
-#ifdef HAVE_STRING_H
-# include <string.h>
-#endif
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
+#include <string.h>
+#include <stdlib.h>
#include <errno.h>
#include <time.h>