00d25f512c
Replace all in-tree uses with necessary subset of <sys/{fb,kb,cons}io.h>. This is also the appropriate fix for exo-tree sources. Put warnings in <machine/console.h> to discourage use. November 15th 2000 the warnings will be converted to errors. January 15th 2001 the <machine/console.h> files will be removed.
15 lines
304 B
C
15 lines
304 B
C
/* $FreeBSD$ */
|
|
|
|
#ifndef _MACHINE_CONSOLE_H_
|
|
#define _MACHINE_CONSOLE_H_
|
|
|
|
#if __GNUC__
|
|
#warning "this file includes <machine/console.h> which is deprecated, use <sys/{kb,cons,fb}io.h> instead"
|
|
#endif
|
|
|
|
#include <sys/fbio.h>
|
|
#include <sys/kbio.h>
|
|
#include <sys/consio.h>
|
|
|
|
#endif /* !_MACHINE_CONSOLE_H_ */
|