blob: 1508ffcf7c3b7042f6be311ab8efabfc0c017935 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef SOFORT_DPRINTF_IMPL_H
#define SOFORT_DPRINTF_IMPL_H
#ifdef ARGV_DRIVER
#define argv_dprintf sfrt_dprintf
#endif
int sfrt_dprintf(int fd, const char * fmt, ...);
#endif
|