types.h 372 B

12345678910111213
  1. /*
  2. * Newlib targets may provide an own version of this file in their machine
  3. * directory to add custom user types for <sys/types.h>.
  4. */
  5. #ifndef _SYS_TYPES_H
  6. #error "must be included via <sys/types.h>"
  7. #endif /* !_SYS_TYPES_H */
  8. #if defined(__XMK__) && defined(___int64_t_defined)
  9. typedef __uint64_t u_quad_t;
  10. typedef __int64_t quad_t;
  11. typedef quad_t * qaddr_t;
  12. #endif