From 099d2ea44d994444479004d07370cb499bc56ad6 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 26 Oct 2003 08:11:01 +0000 Subject: [PATCH] Add __HAVE_SIGINFO --- sys/compat/sunos32/sunos32.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys/compat/sunos32/sunos32.h b/sys/compat/sunos32/sunos32.h index 6b43f3bb3e24..9bde4f0730a2 100644 --- a/sys/compat/sunos32/sunos32.h +++ b/sys/compat/sunos32/sunos32.h @@ -1,4 +1,4 @@ -/* $NetBSD: sunos32.h,v 1.5 2003/09/28 10:24:47 martin Exp $ */ +/* $NetBSD: sunos32.h,v 1.6 2003/10/26 08:11:01 christos Exp $ */ /* * Copyright (c) 2001 Matthew R. Green @@ -57,7 +57,11 @@ typedef u_int32_t sunos32_utsnamep_t; */ __BEGIN_DECLS /* Defined in arch//sunos_machdep.c */ -void sunos32_sendsig __P((int, const sigset_t *, u_long)); +#ifdef __HAVE_SIGINFO +void sunos32_sendsig(const ksiginfo_t *, const sigset_t *); +#else +void sunos32_sendsig(int, const sigset_t *, u_long); +#endif __END_DECLS /*