6d8200ff0c
The following repo-copies were made (by Mark Murray): sys/i386/isa/spkr.c -> sys/dev/speaker/spkr.c sys/i386/include/speaker.h -> sys/dev/speaker/speaker.h share/man/man4/man4.i386/spkr.4 -> share/man/man4/spkr.4
17 lines
291 B
C
17 lines
291 B
C
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _MACHINE_SPEAKER_H_
|
|
#define _MACHINE_SPEAKER_H_
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifdef __CC_SUPPORTS_WARNING
|
|
#warning "machine/speaker.h is deprecated. Include dev/speaker/speaker.h instead."
|
|
#endif
|
|
|
|
#include <dev/speaker/speaker.h>
|
|
|
|
#endif /* !_MACHINE_SPEAKER_H_ */
|