Skip to content

Commit 366dabe

Browse files
authored
Merge pull request #36 from APriestman/revertClaudeStrtokChange
Revert change that broke nolibs builds
2 parents 2bf7ae7 + e221f67 commit 366dabe

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tsk/base/tsk_os.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,7 @@ typedef WCHAR TSK_TCHAR; ///< Character data type that is UTF-16 (wchar_t
170170
#define OPTIND tsk_optind
171171
#define OPTARG tsk_optarg
172172

173-
174-
#define strtok_r(a,b,c) strtok_s(a,b,c)
173+
#define strtok_r(a,b,c) strtok(a,b)
175174

176175
// Non-Win32
177176
#else

0 commit comments

Comments
 (0)