summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorkan <kan@FreeBSD.org>2003-05-19 20:29:07 +0000
committerkan <kan@FreeBSD.org>2003-05-19 20:29:07 +0000
commitf35a6040c12d1b827823ac9814f74050f3706e1e (patch)
tree50ba8da890b4f95538f1ac9f649e5f45bc727251 /sys/amd64
parent4f7eb6b57a943cfa7207301cec09aa12d557892a (diff)
downloadFreeBSD-src-f35a6040c12d1b827823ac9814f74050f3706e1e.zip
FreeBSD-src-f35a6040c12d1b827823ac9814f74050f3706e1e.tar.gz
sys/sys/limits.h:
- Fix visibilty test for LONG_BIT and WORD_BIT. `#if defined(__FOO_VISIBLE)' is alays wrong because __FOO_VISIBLE is always defined (to 0 for invisibility). sys/<arch>/include/limits.h sys/<arch>/include/_limits.h: - Style fixes. Submitted by: bde Reviewed by: bsdmike Approved by: re (scottl)
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/include/_limits.h4
-rw-r--r--sys/amd64/include/limits.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/include/_limits.h b/sys/amd64/include/_limits.h
index 2026e46..1284b31 100644
--- a/sys/amd64/include/_limits.h
+++ b/sys/amd64/include/_limits.h
@@ -39,8 +39,6 @@
#ifndef _MACHINE__LIMITS_H_
#define _MACHINE__LIMITS_H_
-#define __CHAR_BIT 8 /* number of bits in a char */
-
/*
* According to ANSI (section 2.2.4.2), the values below must be usable by
* #if preprocessing directives. Additionally, the expression must have the
@@ -52,6 +50,8 @@
* some other compilers as well, but this should not be depended on.
*/
+#define __CHAR_BIT 8 /* number of bits in a char */
+
#define __SCHAR_MAX 0x7f /* max value for a signed char */
#define __SCHAR_MIN (-0x7f-1) /* min value for a signed char */
diff --git a/sys/amd64/include/limits.h b/sys/amd64/include/limits.h
index 8a36831..8437ddb 100644
--- a/sys/amd64/include/limits.h
+++ b/sys/amd64/include/limits.h
@@ -36,7 +36,7 @@
* $FreeBSD$
*/
-#ifndef _MACHINE_LIMITS_H_
+#ifndef _MACHINE_LIMITS_H_
#define _MACHINE_LIMITS_H_
#if __GNUC__
OpenPOWER on IntegriCloud