diff --git a/libsrc/common/asctime.c b/libsrc/common/asctime.c index 76c7d92f9..3590e2462 100644 --- a/libsrc/common/asctime.c +++ b/libsrc/common/asctime.c @@ -38,6 +38,12 @@ +/*****************************************************************************/ +/* Code */ +/*****************************************************************************/ + + + char* __fastcall__ asctime (const struct tm* timep) { static const char days[7][4] = { diff --git a/libsrc/common/gmtime.c b/libsrc/common/gmtime.c index fde5f8c4d..1a2536c5f 100644 --- a/libsrc/common/gmtime.c +++ b/libsrc/common/gmtime.c @@ -37,6 +37,12 @@ +/*****************************************************************************/ +/* Code */ +/*****************************************************************************/ + + + struct tm* __fastcall__ gmtime (const time_t* timep) { time_t t; diff --git a/libsrc/common/localtime.c b/libsrc/common/localtime.c index 92fabcd6e..db2528444 100644 --- a/libsrc/common/localtime.c +++ b/libsrc/common/localtime.c @@ -37,6 +37,12 @@ +/*****************************************************************************/ +/* Code */ +/*****************************************************************************/ + + + struct tm* __fastcall__ localtime (const time_t* timep) { static struct tm timebuf; diff --git a/libsrc/common/timezone.c b/libsrc/common/timezone.c index b8484dc74..a51009e0e 100644 --- a/libsrc/common/timezone.c +++ b/libsrc/common/timezone.c @@ -37,6 +37,12 @@ +/*****************************************************************************/ +/* Data */ +/*****************************************************************************/ + + + struct _timezone _tz = { 0, /* True if daylight savings time active */ 0, /* Number of seconds behind UTC */