diff options
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/limits.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/include/limits.h b/sys/arch/hppa/include/limits.h index 7f1e2b1e2a7..84e8e7b40d7 100644 --- a/sys/arch/hppa/include/limits.h +++ b/sys/arch/hppa/include/limits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: limits.h,v 1.2 2000/07/31 20:06:02 millert Exp $ */ +/* $OpenBSD: limits.h,v 1.3 2002/02/04 20:08:21 mickey Exp $ */ /* * Copyright (c) 1992-1994, The University of Utah and @@ -91,8 +91,8 @@ #define INT_MAX 2147483647 /* max value for an int */ #define INT_MIN (-2147483647-1) /* min value for an int */ -#define ULONG_MAX 0xffffffff /* max value for an unsigned long */ -#define LONG_MAX 2147483647 /* max value for a long */ +#define ULONG_MAX 0xffffffffUL /* max value for an unsigned long */ +#define LONG_MAX 2147483647L /* max value for a long */ #define LONG_MIN (-2147483647-1) /* min value for a long */ #if !defined(_ANSI_SOURCE) |