patacongo edited a comment on pull request #4193:
URL: https://github.com/apache/incubator-nuttx/pull/4193#issuecomment-884201118


   Another issue is that some of the older file system APIs do not use off_t 
but instead `long int` to represent file position.  For example:
   
       stdio.h:long   ftell(FAR FILE *stream);
       stdio.h:off_t  ftello(FAR FILE *stream);
   
   Also:
   
       stdio.h:int    fseek(FAR FILE *stream, long int offset, int whence);
       stdio.h:int    fseeko(FAR FILE *stream, off_t offset, int whence);
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to