1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2026-05-10 12:35:49 +00:00
Files
amiga-gcc/sys-include/machine/time.h
2022-12-31 15:57:19 +01:00

16 lines
394 B
C

#ifndef _MACHTIME_H_
#define _MACHTIME_H_
#if defined(__rtems__) || defined(__VISIUM__) || defined(__riscv)
#define _CLOCKS_PER_SEC_ 1000000
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
#define _CLOCKS_PER_SEC_ 100
#endif
#ifdef __SPU__
#include <sys/_timespec.h>
__stdargs int nanosleep (const struct timespec *, struct timespec *);
#endif
#endif /* _MACHTIME_H_ */