From 5d8600f9d51f0af05c3155b95602a2a4bb1f3c55 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 27 Aug 2001 06:19:18 +0000 Subject: [PATCH] Correctly #ifdef COMPAT_43 around osendsig() prototype. --- sys/alpha/alpha/machdep.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index ea385be9b328..97c863f41dde 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -224,7 +224,9 @@ SYSCTL_INT(_hw, OID_AUTO, availpages, CTLFLAG_RD, &physmem, 0, ""); /* must be 2 less so 0 0 can signal end of chunks */ #define PHYS_AVAIL_ARRAY_END ((sizeof(phys_avail) / sizeof(vm_offset_t)) - 2) +#ifdef COMPAT_43 void osendsig(sig_t catcher, int sig, sigset_t *mask, u_long code); +#endif static void identifycpu __P((void));