xref: /386bsd/usr/src/kernel/include/i386/prototypes.h (revision dc8b130e)
1 
2 __BEGIN_DECLS
3 void swtch(void);
4 
5 /* interface symbols */
6 #define	__ISYM_VERSION__ "1"	/* XXX RCS major revision number of hdr file */
7 #include "isym.h"		/* this header has interface symbols */
8 
9 /* functions used in modules */
10 __ISYM__(int, splx, (int))
11 __ISYM__(int, splimp, (void))
12 __ISYM__(int, splnet, (void))
13 __ISYM__(int, splhigh, (void))
14 
15 #undef __ISYM__
16 #undef __ISYM_ALIAS__
17 #undef __ISYM_VERSION__
18 u_char inb(u_short);
19 u_char inb_(const u_char);	/* constant */
20 u_char __inb(u_short);		/* recovery time */
21 u_short inw(u_short);
22 int inl(u_short);
23 void insb (u_short, caddr_t, int);
24 void insw (u_short, caddr_t, int);
25 void insl (u_short, caddr_t, int);
26 void outb(u_short, u_char);
27 void outb_(const u_char, u_char);
28 void __outb(u_short, u_char);
29 void outw(u_short, u_short);
30 void outl(u_short, int);
31 void outsb (u_short, caddr_t, int);
32 void outsw (u_short, caddr_t, int);
33 void outsl (u_short, caddr_t, int);
34 
35 __END_DECLS
36