home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixlib36d
/
src
/
stdio
/
c
/
ungetc
< prev
Wrap
Text File
|
1994-03-08
|
315b
|
16 lines
static char sccs_id[] = "@(#) ungetc.c 1.2 " __DATE__ " HJR";
/* ungetc.c (c) Copyright 1990 H.Rogers */
#include <stdio.h>
__STDIOLIB__
#define ungetc(c,f) \
(((f)->i_ptr > (f)->i_base) ? ((f)->i_cnt++,*--(f)->i_ptr = (c)) : -1)
int (ungetc) (register int c, register FILE * f)
{
return (ungetc (c, f));
}