Subversion Repositories Kolibri OS

Rev

Rev 8687 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2.  
  3. int fgetpos(FILE *restrict stream, fpos_t *restrict pos) {
  4.         *pos = stream->position;
  5.         return 0;
  6. }
  7.