From: Jim Meyering Date: Sun, 10 Nov 2002 09:50:59 +0000 (+0000) Subject: Duh. add missing semicolon X-Git-Tag: v4.5.4~266 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0a7aef8bdbf17110caa937a522bf4fd4c83685c;p=thirdparty%2Fcoreutils.git Duh. add missing semicolon Include unistd.h. --- diff --git a/lib/raise.c b/lib/raise.c index 5a6e0e62d4..917795ce5d 100644 --- a/lib/raise.c +++ b/lib/raise.c @@ -25,9 +25,12 @@ #include #include +#if HAVE_UNISTD_H +# include +#endif int rpl_raise (int sig) { - kill (getpid (), sig) + kill (getpid (), sig); }