summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-06-04 05:25:10 +0000
committerPeter Johnson <peter@tortall.net>2003-06-04 05:25:10 +0000
commitf7be0f0fd7bcd0a39bc63b06ad6fa797a6ac599f (patch)
tree02472fbe2c391cbeb9d7c41ad6fc3e2c13e93469 /util.h
parentdd4ae0b63a63036ab700e6d8e72497125403c89c (diff)
downloadyasm-f7be0f0fd7bcd0a39bc63b06ad6fa797a6ac599f.tar.gz
Be a bit friendlier to those compiling without HAVE_CONFIG_H by always
including the "standard C" headers. svn path=/trunk/yasm/; revision=965
Diffstat (limited to 'util.h')
-rw-r--r--util.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/util.h b/util.h
index 24aee309..76f10d5f 100644
--- a/util.h
+++ b/util.h
@@ -46,12 +46,10 @@
#include <stdio.h>
#include <stdarg.h>
-#ifdef STDC_HEADERS
-# include <stddef.h>
-# include <stdlib.h>
-# include <string.h>
-# include <assert.h>
-#endif
+#include <stddef.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
#include <libyasm/coretype.h>