]> jfr.im git - solanum.git/blobdiff - include/stdinc.h
Add .travis.yml
[solanum.git] / include / stdinc.h
index 30331e9e904c66bd1c253712d95695e125fe4ae8..950a5bccedd17ff7e3f5c3d22e47791f6f91c1aa 100644 (file)
@@ -26,7 +26,6 @@
 #include "ratbox_lib.h"
 #include "config.h"            /* Gotta pull in the autoconf stuff */
 #include "ircd_defs.h"  /* Needed for some reasons here -- dwr */
-#include "irc_dictionary.h"
 
 /* AIX requires this to be the first thing in the file.  */
 #ifdef __GNUC__
@@ -50,7 +49,7 @@ char *alloca ();
 #  endif
 # endif
 #endif
+
 
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>
@@ -144,7 +143,7 @@ extern int errno;
 
 
 #ifdef strdupa
-#define LOCAL_COPY(s) strdupa(s) 
+#define LOCAL_COPY(s) strdupa(s)
 #else
 #if defined(__INTEL_COMPILER) || defined(__GNUC__)
 # define LOCAL_COPY(s) __extension__({ char *_s = alloca(strlen(s) + 1); strcpy(_s, s); _s; })