time.h 248 B

123456789101112
  1. #ifndef _MACHTIME_H_
  2. #define _MACHTIME_H_
  3. #include <rtconfig.h>
  4. #define _CLOCKS_PER_SEC_ RT_TICK_PER_SECOND
  5. #ifdef __SPU__
  6. #include <sys/_timespec.h>
  7. int nanosleep (const struct timespec *, struct timespec *);
  8. #endif
  9. #endif /* _MACHTIME_H_ */