diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-28 01:30:09 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-28 01:30:09 +0000 |
commit | c32cc56472f2df1d37d74714aa5b4a876e02eab6 (patch) | |
tree | 217f0ca8274ffb083d71841ffb1d20dc76074c7f | |
parent | 59fa4daf1f5b73e41891bb6b4847828bd05aa6e3 (diff) |
Define RASOPS_SMALL when SMALL_KERNEL is also defined.
Shaves a few more KB out of alpha (and others) ramdisks.
-rw-r--r-- | sys/dev/rasops/rasops.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/rasops/rasops.h b/sys/dev/rasops/rasops.h index 763b2192fd5..847f3d5f854 100644 --- a/sys/dev/rasops/rasops.h +++ b/sys/dev/rasops/rasops.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rasops.h,v 1.3 2002/07/02 19:38:55 nate Exp $ */ +/* $OpenBSD: rasops.h,v 1.4 2002/07/28 01:30:08 miod Exp $ */ /* $NetBSD: rasops.h,v 1.13 2000/06/13 13:36:54 ad Exp $ */ /*- @@ -40,6 +40,10 @@ #ifndef _RASOPS_H_ #define _RASOPS_H_ 1 +#ifdef SMALL_KERNEL +#define RASOPS_SMALL +#endif + struct wsdisplay_font; /* For rasops_info::ri_flg */ |