mirror of
https://github.com/cc65/cc65.git
synced 2024-11-15 11:05:56 +00:00
53dd513176
which included commits to RCS files with non-trunk default branches. git-svn-id: svn://svn.cc65.org/cc65/trunk@3 b7a2c559-68d2-44c3-8de9-860c34a00d81
59 lines
753 B
C
59 lines
753 B
C
/*
|
|
* time.h
|
|
*
|
|
* Ullrich von Bassewitz, 17.06.1998
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TIME_H
|
|
#define _TIME_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
typedef unsigned long time_t;
|
|
typedef unsigned long clock_t;
|
|
|
|
/* Structure for broken down time */
|
|
struct tm {
|
|
int tm_sec;
|
|
int tm_min;
|
|
int tm_hour;
|
|
int tm_mday;
|
|
int tm_mon;
|
|
int tm_year;
|
|
int tm_wday;
|
|
int tm_yday;
|
|
int tm_isdst;
|
|
};
|
|
|
|
/* The 610 gets its clock from the AC current */
|
|
#ifdef __CBM__
|
|
# ifdef __CBM610__
|
|
# define CLK_TCK 50 /* POSIX */
|
|
# define CLOCKS_PER_TICK 50 /* ANSI */
|
|
# else
|
|
# define CLK_TCK 60 /* POSIX */
|
|
# define CLOCKS_PER_TICK 60 /* ANSI */
|
|
# endif
|
|
#endif
|
|
|
|
|
|
|
|
/* Function prototypes */
|
|
clock_t clock (void);
|
|
|
|
|
|
|
|
/* End of time.h */
|
|
|
|
#endif
|
|
|
|
|
|
|