ack/lang/cem/libcc.ansi/stdio/fgetpos.c
1989-05-30 13:34:25 +00:00

16 lines
214 B
C

/*
* fgetpos.c - get the position in the file
*/
/* $Header$ */
#include <stdio.h>
#include <sys/file.h>
int
fgetpos(FILE *stream, fpos_t *pos)
{
*pos = ftell(stream);
if (*pos == -1) return -1;
return 0;
}