avoid int

This commit is contained in:
Vítor Santos Costa 2014-10-02 14:26:50 +01:00
parent 2d5f8f136d
commit 61ffaf5720
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ typedef struct io_functions
typedef struct io_position
{ int64_t byteno; /* byte-position in file */
int64_t charno; /* character position in file */
int lineno; /* lineno in file */
int linepos; /* position in line */
long int lineno; /* lineno in file */
long int linepos; /* position in line */
intptr_t reserved[2]; /* future extensions */
} IOPOS;