]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/perf/config/feature-checks/test-gtk2-infobar.c
perf build: Make features checks directory configurable
[karo-tx-linux.git] / tools / perf / config / feature-checks / test-gtk2-infobar.c
1 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
2 #include <gtk/gtk.h>
3 #pragma GCC diagnostic error "-Wstrict-prototypes"
4
5 int main(int argc, char *argv[])
6 {
7         gtk_init(&argc, &argv);
8         gtk_info_bar_new();
9
10         return 0;
11 }