PatchworkOS
Loading...
Searching...
No Matches
putc.c
Go to the documentation of this file.
1#include <stdio.h>
2#include <stdlib.h>
3
4#include "user/common/file.h"
6
7int putc(int c, FILE* stream)
8{
9 return fputc(c, stream);
10}
int putc(int c, FILE *stream)
Definition putc.c:7
_PUBLIC int fputc(int c, FILE *stream)
Definition fputc.c:7
Definition file.h:34