3094ef7ae44b3f8cad3ab39868175245176179ee
[ascii.git] / fdprintf.h
1 #ifndef __FDPRINTF_H__
2 #define __FDPRINTF_H__
3
4 int fdprintf (int fd, const char *fmt, ...);
5
6 extern int stdfdout;
7 extern int stdfderr;
8
9 #define PRINTOUT(fmt...) fdprintf (stdfdout, fmt)
10 #define PRINTERR(fmt...) fdprintf (stdfderr, fmt)
11
12 #endif /* __FDPRINTF_H__ */
13
14 /* vim: set ts=4 sw=4 et: */