diff options
author | mike <mike@FreeBSD.org> | 2001-11-02 18:05:43 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2001-11-02 18:05:43 +0000 |
commit | 3df91ed4db51c6be4fddae3f156823f0bd491a4c (patch) | |
tree | 937d4736faa17a6c2aad33562ef0c9e5702ed854 /sys/boot/efi | |
parent | a7cf9dee8f2c4a3ed37613951634d40b9fb66203 (diff) | |
download | FreeBSD-src-3df91ed4db51c6be4fddae3f156823f0bd491a4c.zip FreeBSD-src-3df91ed4db51c6be4fddae3f156823f0bd491a4c.tar.gz |
o Add new header <sys/stdint.h>.
o Make <stdint.h> a symbolic link to <sys/stdint.h>.
o Move most of <sys/inttypes.h> into <sys/stdint.h>, as per C99.
o Remove <sys/inttypes.h>.
o Adjust includes in sys/types.h and boot/efi/include/ia64/efibind.h
to reflect new location of integer types in <sys/stdint.h>.
o Remove previously symbolicly linked <inttypes.h>, instead create a
new file.
o Add MD headers <machine/_inttypes.h> from NetBSD.
o Include <sys/stdint.h> in <inttypes.h>, as required by C99; and
include <machine/_inttypes.h> in <inttypes.h>, to fill in the
remaining requirements for <inttypes.h>.
o Add additional integer types in <machine/ansi.h> and
<machine/limits.h> which are included via <sys/stdint.h>.
Partially obtain from: NetBSD
Tested on: alpha, i386
Discussed on: freebsd-standards@bostonradio.org
Reviewed by: bde, fenner, obrien, wollman
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/include/ia64/efibind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/efi/include/ia64/efibind.h b/sys/boot/efi/include/ia64/efibind.h index a94465f..348a80f 100644 --- a/sys/boot/efi/include/ia64/efibind.h +++ b/sys/boot/efi/include/ia64/efibind.h @@ -25,7 +25,7 @@ Revision History // Basic int types of various widths // -#include <sys/inttypes.h> +#include <sys/stdint.h> // // Basic EFI types of various widths |