diff options
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. |