aboutsummaryrefslogtreecommitdiff
path: root/autosetup/cc-lib.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'autosetup/cc-lib.tcl')
-rw-r--r--autosetup/cc-lib.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/autosetup/cc-lib.tcl b/autosetup/cc-lib.tcl
index f4fb0db..e8e5e86 100644
--- a/autosetup/cc-lib.tcl
+++ b/autosetup/cc-lib.tcl
@@ -50,7 +50,7 @@ proc cc-check-endian {} {
msg-checking "Checking endian..."
cc-with {-includes {sys/types.h sys/param.h}} {
if {[cctest -code {
- #if! defined(BIG_ENDIAN) || !defined(BYTE_ORDER)
+ #if !defined(BIG_ENDIAN) || !defined(BYTE_ORDER)
#error unknown
#elif BYTE_ORDER != BIG_ENDIAN
#error little
@@ -60,7 +60,7 @@ proc cc-check-endian {} {
msg-result "big"
set rc 1
} elseif {[cctest -code {
- #if! defined(LITTLE_ENDIAN) || !defined(BYTE_ORDER)
+ #if !defined(LITTLE_ENDIAN) || !defined(BYTE_ORDER)
#error unknown
#elif BYTE_ORDER != LITTLE_ENDIAN
#error big