From d7e5eb3faac173e7d9640e098621746b86213739 Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 29 Jan 2000 15:08:56 +0000 Subject: Use config's conditional compilation rather than using #ifdefs that make modular compilation harder. I'm doing this because people seem to like cut/pasting examples of bad practices in existing code. --- sys/dev/syscons/syscons.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'sys/dev/syscons/syscons.c') diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index a4303c1..b648cfb 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -28,7 +28,6 @@ * $FreeBSD$ */ -#include "sc.h" #include "splash.h" #include "opt_syscons.h" #include "opt_ddb.h" @@ -36,7 +35,6 @@ #include "apm.h" #endif -#if NSC > 0 #include #include #include @@ -3406,5 +3404,3 @@ blink_screen(void *arg) timeout(blink_screen, scp, hz / 10); } } - -#endif /* NSC */ -- cgit v1.1