Changeset b08ef1fd in mainline for uspace/lib/posix/stdio.h


Ignore:
Timestamp:
2011-06-16T02:57:47Z (14 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
491e1ee
Parents:
4f4b4e7
Message:

POSIX types moved from stat.h to types.h.
Added function stubs into stdio.h and unistd.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdio.h

    r4f4b4e7 rb08ef1fd  
    3838
    3939#include "libc/stdio.h"
     40#include "sys/types.h"
    4041
    4142/* Character Input/Output */
     
    5253extern void posix_perror(const char *s);
    5354
     55/* File Positioning */
     56extern int posix_fseeko(FILE *stream, posix_off_t offset, int whence);
     57extern posix_off_t posix_ftello(FILE *stream);
     58
    5459#ifndef POSIX_INTERNAL
    5560        #define freopen posix_freopen
    5661
    5762        #define perror posix_perror
     63
     64        #define fseeko posix_fseeko
     65        #define ftello posix_ftello
    5866#endif
    5967
Note: See TracChangeset for help on using the changeset viewer.