Merge branch '7.8'
[mesa.git] / src / mesa / drivers / dri / common / dri_test.c
1 /* This is just supposed to make sure we get a reference to
2 the driver entry symbol that the compiler doesn't optimize away */
3
4 extern char __driDriverExtensions[];
5
6 int main(int argc, char** argv)
7 {
8 void* p = __driDriverExtensions;
9 return (int)(unsigned long)p;
10 }