diff options
Diffstat (limited to 'roms/skiboot/include/inttypes.h')
-rw-r--r-- | roms/skiboot/include/inttypes.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/roms/skiboot/include/inttypes.h b/roms/skiboot/include/inttypes.h new file mode 100644 index 000000000..984c1f611 --- /dev/null +++ b/roms/skiboot/include/inttypes.h @@ -0,0 +1,31 @@ +// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later +/* This file exists because a bunch of files are built as part of + * unit tests as well as skiboot and inttypes.h is part of libc rather + * than gcc, so to get the magic to work when we don't have libc sitting + * around, we get to rewrite inttypes.h. + * + * Copyright 2015 IBM Corp. + */ + +#ifndef __SKIBOOT_INTTYPES_H +#define __SKIBOOT_INTTYPES_H + +#include <stdint.h> + +#ifndef __WORDSIZE +/* If we don't have __WORDSIZE it means we're *certainly* building skiboot + * which will *ALWAYS* have a word size of 32bits. + * (unless someone goes and ports skiboot to something that isn't powerpc) + */ +#define __WORDSIZE 32 +#endif + +#if __WORDSIZE == 64 +#define PRIu64 "lu" +#define PRIx64 "lx" +#else +#define PRIu64 "llu" +#define PRIx64 "llx" +#endif + +#endif |