diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-18 19:48:24 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-19 01:57:21 +0100 |
commit | b4b653a500199ab6d61318b0b0093567155089cd (patch) | |
tree | c1d100e0bf6cd2a90f4e227b30fd1959574801b3 /i386/i386at/acpi_parse_apic.c | |
parent | 3b097978c147d6e98f02e7b2d31e75a36e36338f (diff) | |
download | gnumach-b4b653a500199ab6d61318b0b0093567155089cd.tar.gz gnumach-b4b653a500199ab6d61318b0b0093567155089cd.tar.bz2 gnumach-b4b653a500199ab6d61318b0b0093567155089cd.zip |
Remove custom stdint.h and rely on freestanding headers
GCC already provides this so we don't need to have our own.
Message-Id: <Y5+02FVA6jf4GPgA@mars>
Diffstat (limited to 'i386/i386at/acpi_parse_apic.c')
-rw-r--r-- | i386/i386at/acpi_parse_apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386at/acpi_parse_apic.c b/i386/i386at/acpi_parse_apic.c index 712de689..22ed8979 100644 --- a/i386/i386at/acpi_parse_apic.c +++ b/i386/i386at/acpi_parse_apic.c @@ -21,7 +21,7 @@ #include <string.h> /* memcmp, memcpy... */ -#include <include/stdint.h> /* uint16_t, uint32_t... */ +#include <stdint.h> /* uint16_t, uint32_t... */ #include <mach/machine.h> /* machine_slot */ |