]> git.sur5r.net Git - cc65/commitdiff
Cosmetic changes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 13 Nov 2002 08:56:45 +0000 (08:56 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 13 Nov 2002 08:56:45 +0000 (08:56 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1511 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/asctime.c
libsrc/common/gmtime.c
libsrc/common/localtime.c
libsrc/common/timezone.c

index 76c7d92f94519986d3421048ad4fcfc656e19202..3590e2462c58ffa9c7c8aa56292d3972375d2180 100644 (file)
 
 
 
+/*****************************************************************************/
+/*                                   Code                                    */
+/*****************************************************************************/
+
+
+
 char* __fastcall__ asctime (const struct tm* timep)
 {
     static const char days[7][4]  = {
index fde5f8c4d70a09b4df8f9c6958565f4751289fcd..1a2536c5f90186b3f689db6e78ed8c32f648dd25 100644 (file)
 
 
 
+/*****************************************************************************/
+/*                                   Code                                    */
+/*****************************************************************************/
+
+
+
 struct tm* __fastcall__ gmtime (const time_t* timep)
 {
     time_t t;
index 92fabcd6e3989076890de2e6f0f0a57969936c7f..db25284441f8acbde7d3f6a4f0cc22651120b3cf 100644 (file)
 
 
 
+/*****************************************************************************/
+/*                                   Code                                    */
+/*****************************************************************************/
+
+
+
 struct tm* __fastcall__ localtime (const time_t* timep)
 {
     static struct tm timebuf;
index b8484dc74529e9f1948b2290d4eb5ca246f13d03..a51009e0ef26b874f9ad66f6b0dc96d6a9e2b520 100644 (file)
 
 
 
+/*****************************************************************************/
+/*                                   Data                                    */
+/*****************************************************************************/
+
+
+
 struct _timezone _tz = {
     0,                  /* True if daylight savings time active */
     0,                  /* Number of seconds behind UTC */