summaryrefslogtreecommitdiff
path: root/sys/lib/libsa
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1995-02-21 07:16:24 +0000
committermycroft <mycroft@NetBSD.org>1995-02-21 07:16:24 +0000
commit248e7ebfb0a42bb2ef328999acbf9c47a7ac84e2 (patch)
tree431f981715ea30a7bb8adf4ac704e25d7e08718a /sys/lib/libsa
parentd031ff677c23741fa706335a856c93b3567d42ab (diff)
Update prototypes.
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r--sys/lib/libsa/stand.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index 9a8ee1fb9b9..dc77551815f 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stand.h,v 1.6 1994/10/30 21:48:25 cgd Exp $ */
+/* $NetBSD: stand.h,v 1.7 1995/02/21 07:16:24 mycroft Exp $ */
/*-
* Copyright (c) 1993
@@ -115,7 +115,7 @@ void printf __P((const char *, ...));
void gets __P((char *));
void panic __P((const char *, ...));
int getchar __P((void));
-int exec __P((char *, char *, int));
+void exec __P((char *, char *, int));
int open __P((char *,int));
int close __P((int));
int read __P((int, void *, u_int));
@@ -135,6 +135,5 @@ int null_stat __P((struct open_file *f, struct stat *sb));
/* Machine dependent functions */
void machdep_start __P((char *, int, char *, char *, char *));
-int machdep_exec __P((char *, char *, int));
int getchar __P((void));
void putchar __P((int));