diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-24 02:36:55 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-24 02:36:55 +0800 |
commit | 04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9 (patch) | |
tree | ad8bfe6819f049658e2126ee6d443265f7ce4442 | |
parent | 91373b6759ef927b47de4838c94f8859f5d2bfaf (diff) | |
download | pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar.gz pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar.bz2 pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar.lz pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar.xz pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.tar.zst pttbbs-04f7afa934ee0b2e9a0c7cecef34676e9cb32dd9.zip |
to prevent some @#$$* by strange os (like linux), place our header files after os-dependent headers
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@642 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/include/bbs.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/pttbbs/include/bbs.h b/pttbbs/include/bbs.h index 600ad781..7b4b4319 100644 --- a/pttbbs/include/bbs.h +++ b/pttbbs/include/bbs.h @@ -34,22 +34,6 @@ #include <sys/sem.h> #include <sys/msg.h> -#include "config.h" -#include "pttstruct.h" -#include "common.h" -#include "perm.h" -#include "modes.h" -#include "proto.h" -#include "gomo.h" - -#ifdef _UTIL_C_ - #include "util.h" -#endif - -#ifndef INCLUDE_VAR_H - #include "var.h" -#endif - /* os dependant include file, define */ #ifdef FreeBSD #include <machine/limits.h> @@ -66,4 +50,21 @@ strlcat(char *dst, const char *src, size_t size); #endif +/* our header */ +#include "config.h" +#include "pttstruct.h" +#include "common.h" +#include "perm.h" +#include "modes.h" +#include "proto.h" +#include "gomo.h" + +#ifdef _UTIL_C_ + #include "util.h" +#endif + +#ifndef INCLUDE_VAR_H + #include "var.h" +#endif + #endif /* INCLUDE_BBS_H */ |