M7350/kernel/tools/perf/config/feature-checks/test-gtk2.c

11 lines
207 B
C
Raw Permalink Normal View History

2024-09-09 08:52:07 +00:00
#pragma GCC diagnostic ignored "-Wstrict-prototypes"
#include <gtk/gtk.h>
#pragma GCC diagnostic error "-Wstrict-prototypes"
2024-09-09 08:57:42 +00:00
int main(int argc, char *argv[])
{
gtk_init(&argc, &argv);
return 0;
}