android_kernel_samsung_on5x.../tools/perf/config/feature-checks/test-gtk2-infobar.c
2018-06-19 23:16:04 +02:00

11 lines
221 B
C

#pragma GCC diagnostic ignored "-Wstrict-prototypes"
#include <gtk/gtk.h>
#pragma GCC diagnostic error "-Wstrict-prototypes"
int main(int argc, char *argv[])
{
gtk_init(&argc, &argv);
gtk_info_bar_new();
return 0;
}