bug report #1005303 - NSIS build warnings

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3630 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-08-18 16:14:44 +00:00
parent b58a609b69
commit 1855c9f7a5
3 changed files with 9 additions and 2 deletions

View file

@ -1,6 +1,7 @@
#include "Platform.h"
#include <stdio.h>
#include <stdarg.h>
#include <time.h>
#include "exedata.h"
#include "exehead/fileform.h"
#include "util.h"
@ -432,3 +433,7 @@ void operator delete(void *p) {
void operator delete [](void *p) {
if (p) free(p);
}
size_t my_strftime(char *s, size_t max, const char *fmt, const struct tm *tm) {
return strftime(s, max, fmt, tm);
}