summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2015-04-30 13:42:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2015-04-30 13:42:09 +0000
commit1e55d1cb07f6e4e910f3e409d5d852e82abab4c7 (patch)
tree6a724c810b4fe79b0319825bda31d08aeacf07af /sys/arch/hppa64
parentd1c0488866243510b54e408727cc4ef84ef786bf (diff)
Remove SIZE_MAX from limits.h. It was added years ago before we
had a proper stdint.h. No ports fallout. OK guenther@ miod@
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r--sys/arch/hppa64/include/limits.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/hppa64/include/limits.h b/sys/arch/hppa64/include/limits.h
index 02cfa0d4be3..648bcf715bc 100644
--- a/sys/arch/hppa64/include/limits.h
+++ b/sys/arch/hppa64/include/limits.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: limits.h,v 1.5 2013/08/07 15:34:00 kettenis Exp $ */
+/* $OpenBSD: limits.h,v 1.6 2015/04/30 13:42:08 millert Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -37,9 +37,6 @@
#include <sys/cdefs.h>
#if __POSIX_VISIBLE || __XPG_VISIBLE
-#ifndef SIZE_MAX
-#define SIZE_MAX ULONG_MAX /* max value for a size_t */
-#endif
#define SSIZE_MAX LONG_MAX /* max value for a ssize_t */
#endif