X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Ffsetpos.c;h=b77104728304ac347c9c1afd8465d1d0a74fefb8;hp=ae100394be6974721496eae8ab3cc649f9a9fd1c;hb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/stdio/fsetpos.c b/functions/stdio/fsetpos.c index ae10039..b771047 100644 --- a/functions/stdio/fsetpos.c +++ b/functions/stdio/fsetpos.c @@ -6,3 +6,10 @@ // ---------------------------------------------------------------------------- int fsetpos( FILE * stream, const fpos_t * pos ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + fseek(stream, *pos, SEEK_SET); + return (0); +} +*/