11 lines
125 B
C
Raw Normal View History

2021-09-14 00:13:48 +02:00
#include <IL/il.h>
2024-04-14 22:45:38 +02:00
int main(void)
2021-09-14 00:13:48 +02:00
{
// Test 1 requires to link to the library.
ilInit();
ilShutDown();
return 0;
}