Parent Directory
|
Revision Log
feat: add plibc to the project
1 | #ifndef PLIBC_STDIO_H |
2 | #define PLIBC_STDIO_H |
3 | |
4 | #include "format.h" |
5 | |
6 | extern int printf (const char *fmt, ...) |
7 | __attribute__ ((format (printf, 1, 2))); |
8 | |
9 | int puts (const char *str); |
10 | int putsnl (const char *str); |
11 | extern int putchar (int c); |
12 | |
13 | #endif /* PLIBC_STDIO_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |