8c2bb0bb2f81ad971c921be5098ba0473685e205
[compress.git] / fprintf.h
1 #ifndef __FPRINTF_H__
2 #define __FPRINTF_H__
3
4 int fdprintf (int fd, const char *fmt, ...);
5
6 extern int _fdout;
7 extern int _fderr;
8
9 #define PRINTOUT(fmt...) fdprintf (_fdout, fmt)
10 #define PRINTERR(fmt...) fdprintf (_fderr, fmt)
11
12 #endif /* __FPRINTF_H__ */
13
14 /* vim: set ts=4 sw=4 et */