summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-03-26 05:07:57 +0000
committerPeter Johnson <peter@tortall.net>2003-03-26 05:07:57 +0000
commitddc08a6994838b028a9f982f2166b0c5c0e1b5e8 (patch)
tree9ff73959c37c96039a2bb2e934a4ad9f2a29ba18 /util.h
parent1752e2102dae5df898b1ab2502729b5bbab521ed (diff)
downloadyasm-ddc08a6994838b028a9f982f2166b0c5c0e1b5e8.tar.gz
Use system includes instead of local includes. This allows replacement of
key headers in certain situations (config.h when compiling with Visual C++ for one), and is also more correct in general. svn path=/trunk/yasm/; revision=887
Diffstat (limited to 'util.h')
-rw-r--r--util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/util.h b/util.h
index 9cf5a0bc..ca3e2623 100644
--- a/util.h
+++ b/util.h
@@ -42,7 +42,7 @@
# include <stdarg.h>
#if defined(YASM_LIB_AC_INTERNAL) && defined(HAVE_CONFIG_H)
-# include "libyasm/config.h"
+# include <libyasm/config.h>
#endif
#if !defined(lint) && !defined(NDEBUG)
@@ -126,7 +126,7 @@ int yasm__strncasecmp(const char *s1, const char *s2, size_t n);
#endif /*YASM_AUTOCONF_INTERNAL*/
-#include "libyasm/compat-queue.h"
+#include <libyasm/compat-queue.h>
#if defined(YASM_AUTOCONF_INTERNAL) && defined(HAVE_SYS_CDEFS_H)
# include <sys/cdefs.h>
@@ -195,8 +195,8 @@ extern void (*yasm_xfree) (/*@only@*/ /*@out@*/ /*@null@*/ void *p)
#endif /*YASM_INTERNAL*/
-#include "libyasm/coretype.h"
+#include <libyasm/coretype.h>
-#include "libyasm/valparam.h"
+#include <libyasm/valparam.h>
#endif