/* Copyright (C) 1991 DJ Delorie All rights reserved. Redistribution, modification, and use in source and binary forms is permitted provided that the above copyright notice and following paragraph are duplicated in all such forms. This file is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ /* * Newlib targets may provide an own version of this file in their machine * directory to add custom user types for . */ #ifndef _SYS_TYPES_H #error "must be included via " #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