]> pd.if.org Git - pdclib.old/blobdiff - includes/stdio.h
PDCLIB-7: Add _PDCLIB_ftell64 to give us full precision file positioning information...
[pdclib.old] / includes / stdio.h
index b5c8abeb618a676e03cc58f0bcd413b714e62c12..74413330a0824a907630955a01f1f614ee99c3a7 100644 (file)
@@ -788,6 +788,7 @@ int fsetpos( FILE * stream, const fpos_t * pos ) _PDCLIB_nothrow;
    TODO: Implementation-defined errno setting for ftell().
 */
 long int ftell( FILE * stream ) _PDCLIB_nothrow;
+_PDCLIB_uint_fast64_t _PDCLIB_ftell64( FILE * stream ) _PDCLIB_nothrow;
 
 /* Equivalent to (void)fseek( stream, 0L, SEEK_SET ), except that the error
    indicator for the stream is also cleared.