add RCSID

do not use sig_t


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9527 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-01-27 20:09:19 +00:00
parent bbf9b61001
commit 2e6cfb0d8a

View File

@@ -31,6 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#if 0
#ifndef lint #ifndef lint
#if 0 #if 0
static char sccsid[] = "@(#)util.c 8.2 (Berkeley) 4/2/94"; static char sccsid[] = "@(#)util.c 8.2 (Berkeley) 4/2/94";
@@ -38,6 +39,12 @@ static char sccsid[] = "@(#)util.c 8.2 (Berkeley) 4/2/94";
static const char rcsid[] = static const char rcsid[] =
"$FreeBSD: src/bin/rcp/util.c,v 1.9 1999/08/27 23:14:58 peter Exp $"; "$FreeBSD: src/bin/rcp/util.c,v 1.9 1999/08/27 23:14:58 peter Exp $";
#endif /* not lint */ #endif /* not lint */
#endif
#ifdef HAVE_CONFIG_H
#include <config.h>
RCSID("$Id$");
#endif
#include <sys/param.h> #include <sys/param.h>
#include <sys/stat.h> #include <sys/stat.h>
@@ -112,7 +119,7 @@ susystem(s, userid)
int userid; int userid;
char *s; char *s;
{ {
sig_t istat, qstat; void (*istat)(int), (*qstat)(int);
int status; int status;
pid_t pid; pid_t pid;