diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-06-10 10:57:29 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-06-10 10:57:29 +0000 |
| commit | 897cd717a56fada7bcdb663c761885013df84a20 (patch) | |
| tree | a452ee9b49edc4a7a01b5f26baa2798217a67923 /sys/alpha/include/clock.h | |
| parent | 8c12612cf6d4265be5c54e20f768e6fd697fd1b3 (diff) | |
Notes
Diffstat (limited to 'sys/alpha/include/clock.h')
| -rw-r--r-- | sys/alpha/include/clock.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sys/alpha/include/clock.h b/sys/alpha/include/clock.h new file mode 100644 index 000000000000..95c160fed890 --- /dev/null +++ b/sys/alpha/include/clock.h @@ -0,0 +1,22 @@ +/* + * Kernel interface to machine-dependent clock driver. + * Garrett Wollman, September 1994. + * This file is in the public domain. + * + * $Id: clock.h,v 1.34 1998/03/05 21:45:42 tegge Exp $ + */ + +#ifndef _MACHINE_CLOCK_H_ +#define _MACHINE_CLOCK_H_ + +#ifdef KERNEL + +extern int wall_cmos_clock; +extern int adjkerntz; + +void DELAY __P((int usec)); +int sysbeep __P((int pitch, int period)); + +#endif /* KERNEL */ + +#endif /* !_MACHINE_CLOCK_H_ */ |
