remove calls to standard fprintf function
[compress.git] / fprintf.h
1 #ifndef __FPRINTF_H__
2 #define __FPRINTF_H__
3
4 #include <stddef.h>
5 #include <stdio.h>
6
7 size_t _fprintf (FILE *fid, const char *fmt, ...);
8
9 #endif /* __FPRINTF_H__ */
10
11 /* vim: set ts=4 sw=4 et */