diff options
author | shennetsind <ind@henn.et> | 2013-05-15 22:08:14 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-15 22:08:14 -0300 |
commit | 84cd1ff926e99abd3689729fb008f2bd020ccba1 (patch) | |
tree | b4db570f355b3bb8208c9ed0864503101b8f1b08 /src/common/strlib.h | |
parent | c7f3f6c2ceae862866a019d0a438d8f965b042c2 (diff) | |
download | hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.gz hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.bz2 hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.tar.xz hercules-84cd1ff926e99abd3689729fb008f2bd020ccba1.zip |
Fixed Bug #7246
http://hercules.ws/board/tracker/issue-7246-compiling-in-vstudio/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/strlib.h')
-rw-r--r-- | src/common/strlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/strlib.h b/src/common/strlib.h index af0fb2764..4a073c3bc 100644 --- a/src/common/strlib.h +++ b/src/common/strlib.h @@ -15,7 +15,7 @@ #ifdef WIN32 #define HAVE_STRTOK_R #define strtok_r(s,delim,save_ptr) _strtok_r((s),(delim),(save_ptr)) - char _strtok_r(char* s1, const char* s2, char** lasts); + char *_strtok_r(char* s1, const char* s2, char** lasts); #endif /// Bitfield determining the behaviour of sv_parse and sv_split. |