* mlibc/include/stdio.h (eputc): Declare.
* mlibc/libc-gcc.c (eputc):
* mlibc/libc-mes.c (eputc): New function.
#undef putc
#endif
+int eputc (int c);
int eputs (char const* s);
int fdputc (int c, int fd);
int getchar ();
typedef unsigned long size_t;
#endif
+int eputc (int c);
int eputs (char const* s);
int fclose (FILE *stream);
FILE *fdopen (int fd, char const *mode);
return 0;
}
+int
+eputc (int c)
+{
+ return fdputc (c, STDERR);
+}
+
int
eputs (char const* s)
{
return i;
}
+int
+eputc (int c)
+{
+ return fputc (c, 2);
+}
+
int
eputs (char const* s)
{