121267Sdist /* 2*60857Sbostic * Copyright (c) 1980, 1993 3*60857Sbostic * The Regents of the University of California. All rights reserved. 434205Sbostic * 542605Sbostic * %sccs.include.redist.c% 621267Sdist */ 721267Sdist 812797Slayer #ifndef lint 9*60857Sbostic static char sccsid[] = "@(#)cgetc.c 8.1 (Berkeley) 05/31/93"; 1034205Sbostic #endif /* not lint */ 1112797Slayer 1212797Slayer # include <stdio.h> 1312797Slayer cgetc(i)1412797Slayerchar cgetc(i) 1512797Slayer int i; 1612797Slayer { 1712797Slayer return ( getchar() ); 1812797Slayer } 19