/usr/share/z88dk/include/oz700/oztime.h is in z88dk-data 1.8.ds1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /*
HTC Compatibility Library and OZ extras
4. TIME
$Id: oztime.h,v 1.2 2003/10/21 17:15:19 stefano Exp $
*/
#ifndef _OZTIME_H
#define _OZTIME_H
#ifndef _OZ_BYTE
typedef unsigned char byte;
#define _OZ_BYTE
#endif
extern unsigned __LIB__ ozsec(void);
extern unsigned __LIB__ ozmin(void);
extern unsigned __LIB__ ozhour(void);
extern unsigned __LIB__ ozweekday(void);
extern unsigned __LIB__ ozmonth(void);
extern unsigned __LIB__ ozday(void);
extern unsigned __LIB__ ozyear(void);
extern unsigned long __LIB__ oztime(void);
#endif
|