blob: 19d0e8560c8ea4af4b44348de0990b8423bf3d1b [file] [log] [blame]
/*
* Newlib targets may provide an own version of this file in their machine
* directory to add custom user types for <sys/types.h>.
*/
#ifndef _SYS_TYPES_H
#error "must be included via <sys/types.h>"
#endif /* !_SYS_TYPES_H */
#if defined(__XMK__) && defined(___int64_t_defined)
typedef __uint64_t u_quad_t;
typedef __int64_t quad_t;
typedef quad_t * qaddr_t;
#endif