]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fgetpos.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / stdio / fgetpos.c
index b26979bd6e43a38483ca76625e9e1a11e4e18faf..c97cf0182365e02f0a67ada5f620499484f5f4cd 100644 (file)
@@ -6,3 +6,10 @@
 // ----------------------------------------------------------------------------
 
 int fgetpos( FILE * restrict stream, fpos_t * restrict pos ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    *pos = ftell(stream);
+    return (0);
+}
+*/