diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-19 00:03:14 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-09-19 00:03:14 +0000 |
commit | de24a0e58557ac7913e2f8174710f50e4697b1bd (patch) | |
tree | d09db121810e5c61fd12650defb033b9c2c0bed7 /util/superiotool/Makefile | |
parent | d754d2c6c4970e686d004ea4d39c5e6599abf46f (diff) | |
download | coreboot-de24a0e58557ac7913e2f8174710f50e4697b1bd.tar.xz |
Use uint16_t and friends where appropriate (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2783 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/superiotool/Makefile')
-rw-r--r-- | util/superiotool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile index 6e86d01352..44d0316e5a 100644 --- a/util/superiotool/Makefile +++ b/util/superiotool/Makefile @@ -24,9 +24,9 @@ CC = gcc INSTALL = /usr/bin/install PREFIX = /usr/local -# TODO: -ansi, -pedantic +# TODO: -pedantic CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \ - -Werror-implicit-function-declaration + -Werror-implicit-function-declaration -ansi OBJS = superiotool.o fintek.o ite.o nsc.o smsc.o |