Initial revision

This commit is contained in:
eck
1989-05-30 13:34:25 +00:00
parent 8f2fe1c003
commit 69f02d8abc
51 changed files with 2589 additions and 0 deletions

View 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);
}