blob: f79a4c6d006b8cf44f24d97e917d3f0f997962f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: intr.h,v 1.1 2008/05/10 12:02:21 kettenis Exp $ */
#include <powerpc/intr.h>
#ifndef _LOCORE
void softtty(void);
void *intr_establish(int, int, int, int (*)(void *), void *, const char *);
#endif
|