gcc on Windows does not know about strtok_s.

This commit is contained in:
Michael Meskes 2012-02-18 17:20:53 +01:00
parent e3155c97b0
commit 45b7ab6b59

View file

@ -10,7 +10,7 @@
#include "extern.h"
#include "sqlca.h"
#ifdef WIN32
#ifdef WIN32_ONLY_COMPILER
#define strtok_r(s,d,p) strtok_s(s,d,p)
#endif