From e7db3d83eae8c8d4a1f85bce50c81b75d1e19022 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 13 Nov 2002 08:56:45 +0000 Subject: [PATCH] Cosmetic changes git-svn-id: svn://svn.cc65.org/cc65/trunk@1511 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/asctime.c | 6 ++++++ libsrc/common/gmtime.c | 6 ++++++ libsrc/common/localtime.c | 6 ++++++ libsrc/common/timezone.c | 6 ++++++ 4 files changed, 24 insertions(+) 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 */ -- 2.39.5