Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4507 → Rev 4508

/trunk/uspace/lib/libc/include/stdio.h
37,6 → 37,7
 
#include <sys/types.h>
#include <stdarg.h>
#include <libadt/list.h>
 
#define EOF (-1)
 
55,6 → 56,9
#endif
 
typedef struct {
/** Linked list pointer. */
link_t link;
/** Underlying file descriptor. */
int fd;
71,9 → 75,6
int phone;
} FILE;
 
extern FILE stdin_null;
extern FILE stdout_klog;
 
extern FILE *stdin;
extern FILE *stdout;
extern FILE *stderr;