X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffsetpos.c;h=b77104728304ac347c9c1afd8465d1d0a74fefb8;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=ae100394be6974721496eae8ab3cc649f9a9fd1c;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old 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); +} +*/