X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stglibs/common.lib/strptime.cpp diff --git a/stglibs/common.lib/strptime.cpp b/stglibs/common.lib/strptime.cpp deleted file mode 100644 index 38b86b47..00000000 --- a/stglibs/common.lib/strptime.cpp +++ /dev/null @@ -1,19 +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 - -#include "stg/common.h" - -char * stg_strptime(const char * a, const char * b, struct tm * tm) -{ -return strptime(a, b, tm); -} -