mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Cosmetic changes
git-svn-id: svn://svn.cc65.org/cc65/trunk@1511 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
704ce5ae22
commit
e7db3d83ea
@ -38,6 +38,12 @@
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
char* __fastcall__ asctime (const struct tm* timep)
|
||||
{
|
||||
static const char days[7][4] = {
|
||||
|
@ -37,6 +37,12 @@
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
struct tm* __fastcall__ gmtime (const time_t* timep)
|
||||
{
|
||||
time_t t;
|
||||
|
@ -37,6 +37,12 @@
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Code */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
struct tm* __fastcall__ localtime (const time_t* timep)
|
||||
{
|
||||
static struct tm timebuf;
|
||||
|
@ -37,6 +37,12 @@
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
/*****************************************************************************/
|
||||
|
||||
|
||||
|
||||
struct _timezone _tz = {
|
||||
0, /* True if daylight savings time active */
|
||||
0, /* Number of seconds behind UTC */
|
||||
|
Loading…
Reference in New Issue
Block a user