From 60273ffa39315fd2703b758c1966144612291b92 Mon Sep 17 00:00:00 2001 From: jsg Date: Wed, 6 Sep 2023 09:29:25 +0000 Subject: [PATCH] include signal.h for kill(2) Remove an ifdef that prevented this. signal.h is part of posix and dtucker@ notes OpenSSH portable uses it without ifdefs. ok matthieu@ robert@ --- app/xlockmore/xlock/logout.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/xlockmore/xlock/logout.c b/app/xlockmore/xlock/logout.c index f16f4c36e..3906533b4 100644 --- a/app/xlockmore/xlock/logout.c +++ b/app/xlockmore/xlock/logout.c @@ -40,10 +40,7 @@ static const char sccsid[] = "@(#)logout.c 4.02 97/04/01 xlockmore"; #if ( HAVE_SYSLOG_H && defined( USE_SYSLOG )) #include #endif -#if defined(__CYGWIN__) || defined(SOLARIS2) #include -#endif -#include extern Bool inroot, inwindow, nolock, debug; extern char *logoutCmd;