diff options
author | 2002-04-24 21:53:11 +0000 | |
---|---|---|
committer | 2002-04-24 21:53:11 +0000 | |
commit | 5733d2de20d4f7b3fffcedce75a93c305745585f (patch) | |
tree | 606e689dafc04bbce96edcd4e282dc8b0eaae58f /sys/lib/libkern/quad.h | |
parent | whoops, missed two fields in modexp structure (kinda important ones =) (diff) | |
download | wireguard-openbsd-5733d2de20d4f7b3fffcedce75a93c305745585f.tar.xz wireguard-openbsd-5733d2de20d4f7b3fffcedce75a93c305745585f.zip |
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.
Diffstat (limited to 'sys/lib/libkern/quad.h')
-rw-r--r-- | sys/lib/libkern/quad.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/quad.h b/sys/lib/libkern/quad.h index 5b4dfde04c0..b8ebe038388 100644 --- a/sys/lib/libkern/quad.h +++ b/sys/lib/libkern/quad.h @@ -1,4 +1,4 @@ -/* $OpenBSD: quad.h,v 1.6 2002/03/14 01:27:07 millert Exp $ */ +/* $OpenBSD: quad.h,v 1.7 2002/04/24 21:53:12 espie Exp $ */ /* $NetBSD: quad.h,v 1.7 1996/04/18 02:20:04 cgd Exp $ */ /*- @@ -60,7 +60,7 @@ #if !defined(_KERNEL) && !defined(_STANDALONE) #include <limits.h> #else -#include <machine/limits.h> +#include <sys/limits.h> #endif /* |