-#ifdef __GNUC__
-volatile void panic __P((const char *, ...));
-#else
-void panic __P((const char *, ...));
-#endif
-void tablefull __P((const char *));
-void log __P((int, const char *, ...));
-void kprintf __P((const char *, ...));
-void ttyprintf __P((struct tty *, const char *, ...));
-
-int kvprintf __P((char const *, void (*)(int, void*), void *, int,
- _BSD_VA_LIST_));
-
-int snprintf __P((char *, size_t, const char *, ...));
-int sprintf __P((char *buf, const char *, ...));
-void uprintf __P((const char *, ...));
-void vprintf __P((const char *, _BSD_VA_LIST_));
-int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_));
-int vsprintf __P((char *buf, const char *, _BSD_VA_LIST_));
-
-void bcopy __P((const void *from, void *to, size_t len));
-void ovbcopy __P((const void *from, void *to, size_t len));
-void bzero __P((void *buf, size_t len));
-
-int copystr __P((void *kfaddr, void *kdaddr, size_t len, size_t *done));
-int copyinstr __P((void *udaddr, void *kaddr, size_t len, size_t *done));
-int copyoutstr __P((void *kaddr, void *udaddr, size_t len, size_t *done));
-int copyin __P((void *udaddr, void *kaddr, size_t len));
-int copyout __P((void *kaddr, void *udaddr, size_t len));
-int copywithin __P((void *saddr, void *daddr, size_t len));
-
-int fubyte __P((void *base));
-#ifdef notdef
-int fuibyte __P((void *base));
-#endif
-int subyte __P((void *base, int byte));
-int suibyte __P((void *base, int byte));
-long fuword __P((void *base));
-long fuiword __P((void *base));
-int suword __P((void *base, long word));
-int suiword __P((void *base, long word));
-
-#ifdef __APPLE_API_UNSTABLE
-int hzto __P((struct timeval *tv));