aboutsummaryrefslogtreecommitdiffstats
path: root/include/xbypass.h
blob: 35c65e1182d8761b1da98a8d9ed51c160aea4157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef XBYPASS_H
#define XBYPASS_H

#include <stdarg.h>
void xf86Msg(int type, const char *format, ...)
{
	va_list args;
	va_start(args, format);
	vfprintf(stderr, format, args);
	va_end(args);
}

#endif