xref: /original-bsd/sys/pmax/stand/libsa/gets.c (revision abb91716)
1 /*-
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Ralph Campbell.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)gets.c	7.1 (Berkeley) 11/15/92
11  */
12 
13 #include <pmax/stand/dec_prom.h>
14 
15 char *
16 gets(s)
17 	char *s;
18 {
19 	return (callv->gets(s));
20 }
21