123456789101112131415161718192021222324252627282930 |
- #ifndef VBOOT_REFERENCE_SYSINCLUDES_H_
- #define VBOOT_REFERENCE_SYSINCLUDES_H_
- #include <inttypes.h> /* For PRIu64 */
- #include <stddef.h>
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #if defined(HAVE_ENDIAN_H) && defined(HAVE_LITTLE_ENDIAN)
- #include <byteswap.h>
- #include <memory.h>
- #endif
- #endif
|