remove skeleton file
[compress.git] / fdprintf.h
CommitLineData
46fb351f
LM
1#ifndef __FDPRINTF_H__
2#define __FDPRINTF_H__
3
4int fdprintf (int fd, const char *fmt, ...);
5
94f2bc50 6extern int stdfdin;
46fb351f
LM
7extern int stdfdout;
8extern int stdfderr;
9
10#define PRINTOUT(fmt...) fdprintf (stdfdout, fmt)
11#define PRINTERR(fmt...) fdprintf (stdfderr, fmt)
12
13#endif /* __FDPRINTF_H__ */
14
15/* vim: set ts=4 sw=4 et: */