4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 20:39:33 +08:00

16 lines
384 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
#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__)
2000-02-17 19:39:52 +00:00
#define _CLOCKS_PER_SEC_ 100
#endif
#ifdef __SPU__
#include <sys/_timespec.h>
int nanosleep (const struct timespec *, struct timespec *);
#endif
2000-02-17 19:39:52 +00:00
#endif /* _MACHTIME_H_ */