xenocara/driver/xf86-video-intel/test/test_log.c
matthieu 07f2f0a5ae Update to xf86-video-intel 2.20.19.
A recent kernel with kernel modesetting support is required.
Thanks to jsg@ and kettenis@ for their work.
2013-03-18 18:38:18 +00:00

18 lines
201 B
C

#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "test.h"
void die(const char *fmt, ...)
{
va_list va;
va_start(va, fmt);
vfprintf(stderr, fmt, va);
va_end(va);
exit(1);
}