Added strftime

git-svn-id: svn://svn.cc65.org/cc65/trunk@1512 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-13 13:08:46 +00:00
parent e7db3d83ea
commit 5dba474030
4 changed files with 252 additions and 2 deletions

View File

@@ -39,9 +39,18 @@
/* Standard data types */
#ifndef _PTRDIFF_T
#define _PTRDIFF_T
typedef int ptrdiff_t;
#endif
#ifndef _WCHAR_T
#define _WCHAR_T
typedef char wchar_t;
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned size_t;
#endif
/* NULL pointer */
#ifdef NULL
@@ -59,4 +68,4 @@ typedef unsigned size_t;