Changeset 1c1002a in mainline
- Timestamp:
- 2008-12-29T23:48:23Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b21292
- Parents:
- 63088cc1
- Location:
- uspace
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/Makefile
r63088cc1 r1c1002a 59 59 console/console1.c \ 60 60 stdio/stdio1.c \ 61 stdio/stdio2.c \ 61 62 vfs/vfs1.c 62 63 -
uspace/app/tester/stdio/stdio1.def
r63088cc1 r1c1002a 1 1 { 2 2 "stdio1", 3 "ANSI C streams test",3 "ANSI C streams reading test", 4 4 &test_stdio1, 5 5 true -
uspace/app/tester/tester.c
r63088cc1 r1c1002a 61 61 #include "console/console1.def" 62 62 #include "stdio/stdio1.def" 63 #include "stdio/stdio2.def" 63 64 {NULL, NULL, NULL} 64 65 }; -
uspace/app/tester/tester.h
r63088cc1 r1c1002a 74 74 extern char * test_console1(bool quiet); 75 75 extern char * test_stdio1(bool quiet); 76 extern char * test_stdio2(bool quiet); 76 77 77 78 extern test_t tests[]; -
uspace/lib/libc/Makefile
r63088cc1 r1c1002a 61 61 generic/io/io.c \ 62 62 generic/io/printf.c \ 63 generic/io/fprintf.c \ 63 64 generic/io/stdio.c \ 64 65 generic/io/stream.c \ -
uspace/lib/libc/generic/io/stdio.c
r63088cc1 r1c1002a 43 43 #include <bool.h> 44 44 #include <stdio.h> 45 46 FILE *stdin, *stdout, *stderr; 45 47 46 48 /** -
uspace/lib/libc/include/stdio.h
r63088cc1 r1c1002a 64 64 } FILE; 65 65 66 extern FILE *stdin, *stdout, *stderr; 67 66 68 extern int getchar(void); 67 69 … … 71 73 extern int printf(const char *, ...); 72 74 extern int asprintf(char **, const char *, ...); 73 extern int sprintf(char *, const char * fmt, ...);75 extern int sprintf(char *, const char *, ...); 74 76 extern int snprintf(char *, size_t , const char *, ...); 75 77 … … 77 79 extern int vsprintf(char *, const char *, va_list); 78 80 extern int vsnprintf(char *, size_t, const char *, va_list); 79 80 #define fprintf(f, fmt, ...) printf(fmt, ##__VA_ARGS__)81 81 82 82 extern int rename(const char *, const char *); … … 90 90 extern void clearerr(FILE *); 91 91 92 extern int fgetc(FILE *); ;92 extern int fgetc(FILE *); 93 93 extern int fputc(int, FILE *); 94 94 extern int fputs(const char *, FILE *); 95 96 extern int fprintf(FILE *, const char *, ...); 97 extern int vfprintf(FILE *, const char *, va_list); 95 98 96 99 #define getc fgetc
Note:
See TracChangeset
for help on using the changeset viewer.