diff options
author | Jan Janssen <medhefgo@web.de> | 2022-06-24 10:45:52 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2022-06-27 12:16:27 +0200 |
commit | 6b852d22b621ef37ef67a3b24ca1f075e0b78698 (patch) | |
tree | 7f4b759f1cd91d45e36f9e9329bef006b5483e5a /src/fundamental/meson.build | |
parent | github: add more components to issue template (diff) | |
download | systemd-6b852d22b621ef37ef67a3b24ca1f075e0b78698.tar.xz systemd-6b852d22b621ef37ef67a3b24ca1f075e0b78698.zip |
fundamental: Remove types-fundamental.h
This removes the fundamental typedefs in favor of just using standard C
types. These are all used internally anyway and also do not do anything
special to warrant any redefinition to EFI types.
Even for BOOLEAN we can safely use stdbool. The defition from the EFI
specification is fully compatible, including making any other values
than 0/1 as undefined.
The exception is sd_char as those need to be char16_t. The typedef is
moved to string-util-fundamental.h instead.
Diffstat (limited to 'src/fundamental/meson.build')
-rw-r--r-- | src/fundamental/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/fundamental/meson.build b/src/fundamental/meson.build index f927788c3a..2ec4a28433 100644 --- a/src/fundamental/meson.build +++ b/src/fundamental/meson.build @@ -8,7 +8,6 @@ fundamental_headers = files( 'macro-fundamental.h', 'sha256.h', 'string-util-fundamental.h', - 'types-fundamental.h', ) # for sd-boot |