Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3758 → Rev 3757

/trunk/uspace/app/tester/stdio/stdio2.def
File deleted
/trunk/uspace/app/tester/stdio/stdio2.c
File deleted
/trunk/uspace/app/tester/stdio/stdio1.def
1,6 → 1,6
{
"stdio1",
"ANSI C streams reading test",
"ANSI C streams test",
&test_stdio1,
true
},
/trunk/uspace/app/tester/tester.c
60,7 → 60,6
#include "vfs/vfs1.def"
#include "console/console1.def"
#include "stdio/stdio1.def"
#include "stdio/stdio2.def"
{NULL, NULL, NULL}
};
 
/trunk/uspace/app/tester/tester.h
73,7 → 73,6
extern char * test_vfs1(bool quiet);
extern char * test_console1(bool quiet);
extern char * test_stdio1(bool quiet);
extern char * test_stdio2(bool quiet);
 
extern test_t tests[];
 
/trunk/uspace/app/tester/Makefile
58,7 → 58,6
devmap/devmap1.c \
console/console1.c \
stdio/stdio1.c \
stdio/stdio2.c \
vfs/vfs1.c
 
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
/trunk/uspace/lib/libc/include/stdio.h
63,8 → 63,6
int eof;
} FILE;
 
extern FILE *stdin, *stdout, *stderr;
 
extern int getchar(void);
 
extern int puts(const char *);
72,7 → 70,7
 
extern int printf(const char *, ...);
extern int asprintf(char **, const char *, ...);
extern int sprintf(char *, const char *, ...);
extern int sprintf(char *, const char *fmt, ...);
extern int snprintf(char *, size_t , const char *, ...);
 
extern int vprintf(const char *, va_list);
79,6 → 77,8
extern int vsprintf(char *, const char *, va_list);
extern int vsnprintf(char *, size_t, const char *, va_list);
 
#define fprintf(f, fmt, ...) printf(fmt, ##__VA_ARGS__)
 
extern int rename(const char *, const char *);
 
extern FILE *fopen(const char *, const char *);
89,13 → 89,10
extern int ferror(FILE *);
extern void clearerr(FILE *);
 
extern int fgetc(FILE *);
extern int fgetc(FILE *);;
extern int fputc(int, FILE *);
extern int fputs(const char *, FILE *);
 
extern int fprintf(FILE *, const char *, ...);
extern int vfprintf(FILE *, const char *, va_list);
 
#define getc fgetc
#define putc fputc
 
/trunk/uspace/lib/libc/generic/io/fprintf.c
File deleted
/trunk/uspace/lib/libc/generic/io/stdio.c
43,8 → 43,6
#include <bool.h>
#include <stdio.h>
 
FILE *stdin, *stdout, *stderr;
 
/**
* Open a stream.
*
/trunk/uspace/lib/libc/Makefile
60,7 → 60,6
generic/io/asprintf.c \
generic/io/io.c \
generic/io/printf.c \
generic/io/fprintf.c \
generic/io/stdio.c \
generic/io/stream.c \
generic/io/sprintf.c \