Mark signo __unused in handler(..)

Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2014-10-23 07:11:58 +00:00
parent e996bb8945
commit eb780be7bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=273528

View File

@ -45,7 +45,11 @@ __RCSID("$NetBSD: t_nanosleep.c,v 1.3 2013/03/31 16:47:16 christos Exp $");
#include <unistd.h>
static void
#if defined(__FreeBSD__)
handler(int signo __unused)
#else
handler(int signo)
#endif
{
/* Nothing. */
}