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