~vojtech-horky/helenos/helenos-qemu

« back to all changes in this revision

Viewing changes to uspace/lib/posix/include/posix/stdio.h

  • Committer: Vojtech Horky
  • Date: 2017-06-14 06:22:31 UTC
  • mfrom: (2103.1.569 HelenOS.mainline)
  • Revision ID: vojtechhorky@users.sourceforge.net-20170614062231-q4ui9pyxp0gs2hrl
MergeĀ mainlineĀ changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
#include "stdarg.h"
53
53
#include "limits.h"
54
54
 
 
55
#define NO_HELENOS_DEBUG
 
56
#include "libc/stdio.h"
 
57
 
55
58
#undef __linux__
56
59
#undef __SSE2__
57
60
 
72
75
/** Maximum size in bytes of the longest filename. */
73
76
#define FILENAME_MAX 4096
74
77
 
75
 
typedef struct _IO_FILE FILE;
76
 
 
77
 
#ifndef LIBPOSIX_INTERNAL
78
 
        enum _buffer_type {
79
 
                /** No buffering */
80
 
                _IONBF,
81
 
                /** Line buffering */
82
 
                _IOLBF,
83
 
                /** Full buffering */
84
 
                _IOFBF
85
 
        };
86
 
#endif
87
78
 
88
79
extern FILE *stdin;
89
80
extern FILE *stdout;