From 07d30e34e398e66d8cea5e06cb737da6aa9d9d60 Mon Sep 17 00:00:00 2001 From: espie <> Date: Wed, 24 Apr 2002 21:53:11 +0000 Subject: [PATCH] Introduce a new file, machine/internal_types.h, to hold that specific arch type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others. --- src/include/limits.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/limits.h b/src/include/limits.h index 772688e8..0ff2db49 100644 --- a/src/include/limits.h +++ b/src/include/limits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: limits.h,v 1.6 1998/11/20 11:18:25 d Exp $ */ +/* $OpenBSD: limits.h,v 1.7 2002/04/24 21:53:11 espie Exp $ */ /* $NetBSD: limits.h,v 1.7 1994/10/26 00:56:00 cgd Exp $ */ /* @@ -86,7 +86,7 @@ #define TTY_NAME_MAX _POSIX_TTY_NAME_MAX #define LOGIN_NAME_MAX MAXLOGNAME -#include +#include #include #endif /* !_LIMITS_H_ */