From 2cb54d48a9b61dbd28165dcd63a89ebbdd66df66 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Wed, 6 Sep 2023 13:24:45 +0200 Subject: [PATCH] Added the common function which both fputs() and puts() share now. --- library/stdio_protos.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/stdio_protos.h b/library/stdio_protos.h index a444ebc..a983a92 100644 --- a/library/stdio_protos.h +++ b/library/stdio_protos.h @@ -162,6 +162,11 @@ extern int __fputc(int c,FILE *stream,int buffer_mode); /****************************************************************************/ +/* stdio_fputs.c */ +extern int __fputs(const char *s, int line_feed, FILE *stream); + +/****************************************************************************/ + /* stdio_sscanf_hook_entry.c */ extern int __sscanf_hook_entry(struct iob *string,struct file_action_message *fam);