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