1 /*
2 Copyright (C) 1991 DJ Delorie
3 All rights reserved.
4 
5 Redistribution, modification, and use in source and binary forms is permitted
6 provided that the above copyright notice and following paragraph are
7 duplicated in all such forms.
8 
9 This file is distributed WITHOUT ANY WARRANTY; without even the implied
10 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  */
12 /*
13  * Newlib targets may provide an own version of this file in their machine
14  * directory to add custom user types for <sys/types.h>.
15  */
16 #ifndef _SYS_TYPES_H
17 #error "must be included via <sys/types.h>"
18 #endif /* !_SYS_TYPES_H */
19 
20 #if defined(__XMK__) && defined(___int64_t_defined)
21 typedef	__uint64_t	u_quad_t;
22 typedef	__int64_t	quad_t;
23 typedef	quad_t *	qaddr_t;
24 #endif
25