opcodes2c.pl: Add command line options
[emu8051.git] / src / common / common.h
index ce9c83d..e38f5b1 100644 (file)
 #ifndef COMMON_H
 #define COMMON_H 1
 
+#if HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <errno.h>
 /* Returns TRUE if the first 'c' characters of strings 'a' and 'b' are equal. */
 #define STREQ_LEN(a, b, c) (strncasecmp((a), (b), (c)) == 0)
 
-
-inline void
-ErrorLocation(const char *file, int line);
-
 void *
 xmalloc(size_t size, const char *filename, int line_number);