2021-10-09 | Paul Boddie | file changeset files shortlog | Updated libext2fs to version 1.46.2, also introducing some notes about the process of adapting the library for L4Re, together with a tool to generate a configuration from an existing, external "host" build of the library. |
paul@212 | 1 | #include <sys/types.h> |
paul@212 | 2 | |
paul@212 | 3 | /* Machine-specific definitions. See <bits/types.h> and <bits/typesizes.h>. */ |
paul@212 | 4 | |
paul@212 | 5 | #define SIZEOF_SHORT 2 |
paul@212 | 6 | #define SIZEOF_INT 4 |
paul@212 | 7 | #define SIZEOF_LONG (__WORDSIZE / 8) |
paul@212 | 8 | #define SIZEOF_LONG_LONG 8 |
paul@212 | 9 | #define SIZEOF_OFF_T (__WORDSIZE / 8) |
paul@212 | 10 |