ascii is working
[ascii.git] / fdprintf.h
CommitLineData
1968fc94
LM
1#ifndef __FDPRINTF_H__
2#define __FDPRINTF_H__
3
4int fdprintf (int fd, const char *fmt, ...);
5
6extern int _fd_stdout;
7extern int _fd_stderr;
8
9#define PRINTOUT(fmt...) fdprintf (_fd_stdout, fmt)
10#define PRINTERR(fmt...) fdprintf (_fd_stderr, fmt)
11
12#endif /* __FDPRINTF_H__ */
13
14/* vim: set ts=4 sw=4 et: */