From 0b2dbb02ca4d0d0feca64fb2eb4ece4d4d609d31 Mon Sep 17 00:00:00 2001 From: jtc Date: Wed, 14 Jun 1995 05:19:52 +0000 Subject: add explicit return type --- lib/libc/stdlib/system.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libc/stdlib/system.c') diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c index 20d1a645b43..b953567c0b2 100644 --- a/lib/libc/stdlib/system.c +++ b/lib/libc/stdlib/system.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)system.c 5.10 (Berkeley) 2/23/91";*/ -static char *rcsid = "$Id: system.c,v 1.9 1995/02/28 01:46:57 jtc Exp $"; +static char *rcsid = "$Id: system.c,v 1.10 1995/06/14 05:20:01 jtc Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -45,6 +45,7 @@ static char *rcsid = "$Id: system.c,v 1.9 1995/02/28 01:46:57 jtc Exp $"; extern char **environ; +int system(command) const char *command; { -- cgit