]> pd.if.org Git - pdclib/blobdiff - platform/example/internals/_PDCLIB_config.h
Minor cleanups.
[pdclib] / platform / example / internals / _PDCLIB_config.h
index 5c7210ad763c693b47cb0d8d693f2cf370eadb0c..c807a1bc0fdd41fcee5c7ffc5a25e2da3b0e87cf 100644 (file)
@@ -235,10 +235,12 @@ typedef int _PDCLIB_fd_t;
 #define _PDCLIB_NOHANDLE -1
 
 /* A type in which to store file offsets. See fgetpos() / fsetpos(). */
+/* FIXME: The 'int' types here are placeholders. When changed, check out
+   stdinit.c, too. */
 typedef struct
 {
     int position;
-    int parse_state;
+    int mbstate;
 } _PDCLIB_fpos_t;
 
 /* The default size for file buffers. Must be at least 256. */