1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-18 07:29:36 +00:00

Cosmetic changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@1511 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-13 08:56:45 +00:00
parent 704ce5ae22
commit e7db3d83ea
4 changed files with 24 additions and 0 deletions

View File

@ -38,6 +38,12 @@
/*****************************************************************************/
/* Code */
/*****************************************************************************/
char* __fastcall__ asctime (const struct tm* timep)
{
static const char days[7][4] = {

View File

@ -37,6 +37,12 @@
/*****************************************************************************/
/* Code */
/*****************************************************************************/
struct tm* __fastcall__ gmtime (const time_t* timep)
{
time_t t;

View File

@ -37,6 +37,12 @@
/*****************************************************************************/
/* Code */
/*****************************************************************************/
struct tm* __fastcall__ localtime (const time_t* timep)
{
static struct tm timebuf;

View File

@ -37,6 +37,12 @@
/*****************************************************************************/
/* Data */
/*****************************************************************************/
struct _timezone _tz = {
0, /* True if daylight savings time active */
0, /* Number of seconds behind UTC */