diff options
Diffstat (limited to 'include/flatcc/portable/portable_basic.h')
-rw-r--r-- | include/flatcc/portable/portable_basic.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/flatcc/portable/portable_basic.h b/include/flatcc/portable/portable_basic.h new file mode 100644 index 0000000..0396f3d --- /dev/null +++ b/include/flatcc/portable/portable_basic.h @@ -0,0 +1,25 @@ +#ifndef PORTABLE_BASIC_H +#define PORTABLE_BASIC_H + +/* + * Basic features need to make compilers support the most common moden C + * features, and endian / unligned read support as well. + * + * It is not assumed that this file is always included. + * Other include files are independent or include what they need. + */ + +#include "pversion.h" +#include "pwarnings.h" + +/* Featutures that ought to be supported by C11, but some aren't. */ +#include "pinttypes.h" +#include "pstdalign.h" +#include "pinline.h" +#include "pstatic_assert.h" + +/* These are not supported by C11 and are general platform abstractions. */ +#include "pendian.h" +#include "punaligned.h" + +#endif /* PORTABLE_BASIC_H */ |