diff options
author | peter <peter@FreeBSD.org> | 2001-08-27 06:19:18 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-08-27 06:19:18 +0000 |
commit | 79bfbf84c5b525c8970077302a4a92051957a54c (patch) | |
tree | 53efb03331677898c7b380755eff883d520ec6ef | |
parent | 4b437abe7829ed9af8a9434c256082b546c84682 (diff) | |
download | FreeBSD-src-79bfbf84c5b525c8970077302a4a92051957a54c.zip FreeBSD-src-79bfbf84c5b525c8970077302a4a92051957a54c.tar.gz |
Correctly #ifdef COMPAT_43 around osendsig() prototype.
-rw-r--r-- | sys/alpha/alpha/machdep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index ea385be..97c863f 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)); |