aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-08-15 19:50:59 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-08-15 19:50:59 +0000
commit2a54e09dff927af1de0f92ba7f9707ae3dc0db96 (patch)
tree198dcf316fcd1feab8b94b9f89d86f1f24c71f83
parentd89c83bef12ed9db533f6f198008401d5123ac01 (diff)
OFF_T -> OFF (more standard style)
Notes
Notes: svn path=/head/; revision=81727
-rw-r--r--sys/alpha/include/_limits.h4
-rw-r--r--sys/alpha/include/limits.h4
-rw-r--r--sys/i386/include/_limits.h4
-rw-r--r--sys/i386/include/limits.h4
-rw-r--r--sys/ia64/include/_limits.h4
-rw-r--r--sys/ia64/include/limits.h4
-rw-r--r--sys/powerpc/include/_limits.h4
-rw-r--r--sys/powerpc/include/limits.h4
-rw-r--r--sys/sparc64/include/_limits.h4
-rw-r--r--sys/sparc64/include/limits.h4
10 files changed, 20 insertions, 20 deletions
diff --git a/sys/alpha/include/_limits.h b/sys/alpha/include/_limits.h
index 8f433c3d74f3..fd45e352ef33 100644
--- a/sys/alpha/include/_limits.h
+++ b/sys/alpha/include/_limits.h
@@ -82,8 +82,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same on the alpha. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */
diff --git a/sys/alpha/include/limits.h b/sys/alpha/include/limits.h
index 8f433c3d74f3..fd45e352ef33 100644
--- a/sys/alpha/include/limits.h
+++ b/sys/alpha/include/limits.h
@@ -82,8 +82,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same on the alpha. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */
diff --git a/sys/i386/include/_limits.h b/sys/i386/include/_limits.h
index 99030bad2927..0e9631223a3f 100644
--- a/sys/i386/include/_limits.h
+++ b/sys/i386/include/_limits.h
@@ -93,8 +93,8 @@
#if !defined(_POSIX_SOURCE)
#define SIZE_T_MAX UINT_MAX /* max value for a size_t */
-#define OFF_T_MAX LLONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LLONG_MIN /* min value for a off_t */
+#define OFF_MAX LLONG_MAX /* max value for a off_t */
+#define OFF_MIN LLONG_MIN /* min value for a off_t */
/* Quads and long longs are the same size. Ensure they stay in sync. */
#define UQUAD_MAX ULLONG_MAX /* max value for a uquad_t */
diff --git a/sys/i386/include/limits.h b/sys/i386/include/limits.h
index 99030bad2927..0e9631223a3f 100644
--- a/sys/i386/include/limits.h
+++ b/sys/i386/include/limits.h
@@ -93,8 +93,8 @@
#if !defined(_POSIX_SOURCE)
#define SIZE_T_MAX UINT_MAX /* max value for a size_t */
-#define OFF_T_MAX LLONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LLONG_MIN /* min value for a off_t */
+#define OFF_MAX LLONG_MAX /* max value for a off_t */
+#define OFF_MIN LLONG_MIN /* min value for a off_t */
/* Quads and long longs are the same size. Ensure they stay in sync. */
#define UQUAD_MAX ULLONG_MAX /* max value for a uquad_t */
diff --git a/sys/ia64/include/_limits.h b/sys/ia64/include/_limits.h
index aa5b7e9aa6f6..b17389937f62 100644
--- a/sys/ia64/include/_limits.h
+++ b/sys/ia64/include/_limits.h
@@ -80,8 +80,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */
diff --git a/sys/ia64/include/limits.h b/sys/ia64/include/limits.h
index aa5b7e9aa6f6..b17389937f62 100644
--- a/sys/ia64/include/limits.h
+++ b/sys/ia64/include/limits.h
@@ -80,8 +80,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */
diff --git a/sys/powerpc/include/_limits.h b/sys/powerpc/include/_limits.h
index 887be718693d..0e9631223a3f 100644
--- a/sys/powerpc/include/_limits.h
+++ b/sys/powerpc/include/_limits.h
@@ -93,8 +93,8 @@
#if !defined(_POSIX_SOURCE)
#define SIZE_T_MAX UINT_MAX /* max value for a size_t */
-#define OFF_T_MAX LLONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LLONG_MIN /* min value for a off_t */
+#define OFF_MAX LLONG_MAX /* max value for a off_t */
+#define OFF_MIN LLONG_MIN /* min value for a off_t */
/* Quads and long longs are the same size. Ensure they stay in sync. */
#define UQUAD_MAX ULLONG_MAX /* max value for a uquad_t */
diff --git a/sys/powerpc/include/limits.h b/sys/powerpc/include/limits.h
index 887be718693d..0e9631223a3f 100644
--- a/sys/powerpc/include/limits.h
+++ b/sys/powerpc/include/limits.h
@@ -93,8 +93,8 @@
#if !defined(_POSIX_SOURCE)
#define SIZE_T_MAX UINT_MAX /* max value for a size_t */
-#define OFF_T_MAX LLONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LLONG_MIN /* min value for a off_t */
+#define OFF_MAX LLONG_MAX /* max value for a off_t */
+#define OFF_MIN LLONG_MIN /* min value for a off_t */
/* Quads and long longs are the same size. Ensure they stay in sync. */
#define UQUAD_MAX ULLONG_MAX /* max value for a uquad_t */
diff --git a/sys/sparc64/include/_limits.h b/sys/sparc64/include/_limits.h
index 3f53b25384bc..b7a8b5b675d5 100644
--- a/sys/sparc64/include/_limits.h
+++ b/sys/sparc64/include/_limits.h
@@ -74,8 +74,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same on the alpha. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */
diff --git a/sys/sparc64/include/limits.h b/sys/sparc64/include/limits.h
index 3f53b25384bc..b7a8b5b675d5 100644
--- a/sys/sparc64/include/limits.h
+++ b/sys/sparc64/include/limits.h
@@ -74,8 +74,8 @@
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
-#define OFF_T_MAX LONG_MAX /* max value for a off_t */
-#define OFF_T_MIN LONG_MIN /* min value for a off_t */
+#define OFF_MAX LONG_MAX /* max value for a off_t */
+#define OFF_MIN LONG_MIN /* min value for a off_t */
/* Quads and longs are the same on the alpha. Ensure they stay in sync. */
#define UQUAD_MAX (ULONG_MAX) /* max value for a uquad_t */