X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/5178870c9c7f80d0c6f1b715d0131320d8f5bc90..90e389f6ec12e60a62c362296ffcf314feb5b03d:/stglibs/common.lib/stg_strptime.cpp?ds=sidebyside diff --git a/stglibs/common.lib/stg_strptime.cpp b/stglibs/common.lib/stg_strptime.cpp deleted file mode 100644 index 0e1fde27..00000000 --- a/stglibs/common.lib/stg_strptime.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/* - * $Revision: 1.1 $ - * $Date: 2007/05/17 08:25:58 $ - * - * This file contain a replacement of commonly used function strptime - * Under some OS's it appears only with _XOPEN_SOURCE definition - * - */ - -#define _XOPEN_SOURCE -#include - -char * stg_strptime(const char * a, const char * b, struct tm * tm) -{ -return strptime(a, b, tm); -} -