Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/stdio.c

    re3c960e r32b3a12  
    3535
    3636#define LIBPOSIX_INTERNAL
    37 #define __POSIX_DEF__(x) posix_##x
     37
     38/* Has to be first. */
     39#include "posix/stdbool.h"
    3840
    3941#include "internal/common.h"
     
    4951#include "libc/stdio.h"
    5052#include "libc/io/printf_core.h"
    51 #include "libc/stdbool.h"
    5253#include "libc/str.h"
    5354#include "libc/malloc.h"
     
    309310}
    310311
     312struct _posix_fpos {
     313        off64_t offset;
     314};
     315
    311316/** Restores stream a to position previously saved with fgetpos().
    312317 *
Note: See TracChangeset for help on using the changeset viewer.