diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-06-04 13:10:20 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-06-04 13:10:20 +0800 |
commit | c9fa92954b1c6363d16be1e8b904c2aac7acebe5 (patch) | |
tree | 81b877292a1621b7cd201f81641b0aad6d81c3ec /include | |
parent | 7197b9cd1f5da0c2af501ca6590a4594714be733 (diff) | |
download | pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar.gz pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar.bz2 pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar.lz pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar.xz pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.tar.zst pttbbs-c9fa92954b1c6363d16be1e8b904c2aac7acebe5.zip |
strcasestr() is OS dependent function
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2052 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/proto.h b/include/proto.h index a0b22fc2..066df340 100644 --- a/include/proto.h +++ b/include/proto.h @@ -188,7 +188,6 @@ int dice_main(void); int vedit(char *fpath, int saveheader, int *islocal); void write_header(FILE *fp); void addsignature(FILE *fp, int ifuseanony); -char *strcasestr(const char *big, const char *little); void auto_backup(void); void restore_backup(void); char *ask_tmpbuf(int y); @@ -366,6 +365,9 @@ char *completeutmp_getname(int where); /* osdep */ int cpuload(char *str); double swapused(long *total, long *used); +#ifdef __linux__ +char *strcasestr(const char *big, const char *little); +#endif /* othello */ int othello_main(void); |