Implemented fputs

This commit is contained in:
Max Wash
2020-04-01 11:58:54 +01:00
parent 08734094d7
commit 703d9a178f
5 changed files with 38 additions and 2 deletions

View File

@@ -13,6 +13,8 @@
#define SEEK_CUR __SEEK_CUR
#define SEEK_END __SEEK_END
#define EOF -1
#if defined(__cplusplus)
extern "C" {
#endif
@@ -24,6 +26,7 @@ extern FILE *stdout;
extern FILE *stderr;
extern int fileno(FILE *fp);
extern int fputs(const char *str, FILE *fp);
#if defined(__cplusplus)
}