/* * Copyright (C) 2014 Collabora Ltd. * Author: Nicolas Dufresne * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #include #ifndef __TYPES_COMPAT_H__ #define __TYPES_COMPAT_H__ #define __inline__ inline #ifdef __linux__ #include #include #else /* One of the BSDs */ /* From linux/types.h */ #ifndef __bitwise__ # ifdef __CHECKER__ # define __bitwise__ __attribute__((bitwise)) # else # define __bitwise__ # endif #endif #if defined(__sun) /* for _IOR/_IORW on Illumos distros */ #include #endif #ifndef __bitwise # ifdef __CHECK_ENDIAN__ # define __bitwise __bitwise__ # else # define __bitwise # endif #endif typedef gint8 __s8; typedef guint8 __u8; typedef gint16 __s16; typedef guint16 __u16; typedef gint32 __s32; typedef guint32 __u32; typedef gint64 __s64; typedef guint64 __u64; typedef guint32 __bitwise __le32; #endif #endif /* __TYPES_COMPAT_H__ */