diff options
author | ache <ache@FreeBSD.org> | 2001-08-15 19:50:59 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-08-15 19:50:59 +0000 |
commit | 2675b7e4e49e15e19fd52ca762aea486338ba07c (patch) | |
tree | 198dcf316fcd1feab8b94b9f89d86f1f24c71f83 /sys/sparc64/include/limits.h | |
parent | e9e129df6a008382bb2082ca81333ec8c0b5b837 (diff) | |
download | FreeBSD-src-2675b7e4e49e15e19fd52ca762aea486338ba07c.zip FreeBSD-src-2675b7e4e49e15e19fd52ca762aea486338ba07c.tar.gz |
OFF_T -> OFF (more standard style)
Diffstat (limited to 'sys/sparc64/include/limits.h')
-rw-r--r-- | sys/sparc64/include/limits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sparc64/include/limits.h b/sys/sparc64/include/limits.h index 3f53b25..b7a8b5b 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 */ |