diff options
Diffstat (limited to 'sys/powerpc/include/clock.h')
| -rw-r--r-- | sys/powerpc/include/clock.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/powerpc/include/clock.h b/sys/powerpc/include/clock.h new file mode 100644 index 000000000000..9f2d692fefe8 --- /dev/null +++ b/sys/powerpc/include/clock.h @@ -0,0 +1,18 @@ +/*- + * Kernel interface to machine-dependent clock driver. + * Garrett Wollman, September 1994. + * This file is in the public domain. + */ + +#ifndef _MACHINE_CLOCK_H_ +#define _MACHINE_CLOCK_H_ + +#ifdef _KERNEL + +struct trapframe; + +void decr_intr(struct trapframe *); + +#endif + +#endif /* !_MACHINE_CLOCK_H_ */ |
