diff options
Diffstat (limited to 'include/xbypass.h')
| -rw-r--r-- | include/xbypass.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/xbypass.h b/include/xbypass.h new file mode 100644 index 0000000..35c65e1 --- /dev/null +++ b/include/xbypass.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef XBYPASS_H | ||
| 2 | #define XBYPASS_H | ||
| 3 | |||
| 4 | #include <stdarg.h> | ||
| 5 | void xf86Msg(int type, const char *format, ...) | ||
| 6 | { | ||
| 7 | va_list args; | ||
| 8 | va_start(args, format); | ||
| 9 | vfprintf(stderr, format, args); | ||
| 10 | va_end(args); | ||
| 11 | } | ||
| 12 | |||
| 13 | #endif | ||
