summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-29 07:59:30 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-29 07:59:30 +0000
commitf0dc023cbfa16858bc87729a75fe5b098da329ae (patch)
treeab38eb825d5ea65e91d6250bf9b1873fbbc9d630 /sys/lib
parent90cc61c88dc54f8dd36ff805b99f07838c3ce125 (diff)
add some prototypes.
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/libsa/stand.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index ccdb0d2f184..1d5ba9e70f7 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stand.h,v 1.12 1996/10/23 09:02:54 mickey Exp $ */
+/* $OpenBSD: stand.h,v 1.13 1996/10/29 07:59:29 mickey Exp $ */
/* $NetBSD: stand.h,v 1.13 1996/01/13 22:25:42 leo Exp $ */
/*-
@@ -181,10 +181,14 @@ off_t null_seek __P((struct open_file *f, off_t offset, int where));
int null_stat __P((struct open_file *f, struct stat *sb));
int null_readdir __P((struct open_file *f, char *name));
+void putchar __P((int));
+int getchar __P((void));
+
/* Machine dependent functions */
int devopen __P((struct open_file *, const char *, char **));
void machdep_start __P((char *, int, char *, char *, char *));
-int getchar __P((void));
-void putchar __P((int));
time_t getsecs __P((void));
+void putc __P((int));
+int getc __P((void));
+int ischar __P((void));