Initial revision
This commit is contained in:
12
lang/cem/libcc.ansi/stdio/fsetpos.c
Normal file
12
lang/cem/libcc.ansi/stdio/fsetpos.c
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* fsetpos.c - set the position in the file
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
fsetpos(FILE *stream, fpos_t *pos)
|
||||
{
|
||||
return fseek(stream, *pos, SEEK_SET);
|
||||
}
|
||||
Reference in New Issue
Block a user