Files

14 lines
235 B
C

/*
* Full on demand EGL
*
* GLAD: $GLAD --out-path=$tmp --api="egl" c --on-demand
* COMPILE: $GCC $test -o $tmp/test -I$tmp/include $tmp/src/egl.c -ldl
* RUN: $tmp/test
*/
#include <glad/egl.h>
int main(void) {
return 0;
}