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.h | |
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.h')
-rw-r--r-- | i386/i386at/acpi_parse_apic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386at/acpi_parse_apic.h b/i386/i386at/acpi_parse_apic.h index 5a5cb14d..bad10054 100644 --- a/i386/i386at/acpi_parse_apic.h +++ b/i386/i386at/acpi_parse_apic.h @@ -22,7 +22,7 @@ #ifndef __ACPI_H__ #define __ACPI_H__ -#include <include/stdint.h> +#include <stdint.h> enum ACPI_RETURN { ACPI_BAD_CHECKSUM = -1, |