diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-06 22:48:48 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-06 22:48:48 +0000 |
commit | e3e65ac6a2cf8a617b90e4fd5162bd3d3ff22747 (patch) | |
tree | ea3065cbc70aded21c2b8e57a497a44734dd2eaf /sys/arch/m68k/include | |
parent | 3d968d723dbeb3379884001adc825a01b6513dce (diff) |
Don't redefine SIZE_MAX
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r-- | sys/arch/m68k/include/limits.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/limits.h b/sys/arch/m68k/include/limits.h index 21c555ff2b6..1717ed40ce1 100644 --- a/sys/arch/m68k/include/limits.h +++ b/sys/arch/m68k/include/limits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: limits.h,v 1.8 2005/12/14 21:46:31 millert Exp $ */ +/* $OpenBSD: limits.h,v 1.9 2006/01/06 22:48:47 millert Exp $ */ /* $NetBSD: limits.h,v 1.9 1994/10/26 07:50:48 cgd Exp $ */ /* @@ -37,7 +37,9 @@ #include <sys/cdefs.h> #if __POSIX_VISIBLE || __XPG_VISIBLE +#ifndef SIZE_MAX #define SIZE_MAX UINT_MAX /* max value for a size_t */ +#endif #define SSIZE_MAX INT_MAX /* max value for a ssize_t */ #endif |