summaryrefslogtreecommitdiffstats
path: root/tools/perf/config/feature-checks/test-gtk2-infobar.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/config/feature-checks/test-gtk2-infobar.c')
-rw-r--r--tools/perf/config/feature-checks/test-gtk2-infobar.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-gtk2-infobar.c b/tools/perf/config/feature-checks/test-gtk2-infobar.c
new file mode 100644
index 000000000000..eebcfbc45120
--- /dev/null
+++ b/tools/perf/config/feature-checks/test-gtk2-infobar.c
@@ -0,0 +1,10 @@
+#pragma GCC diagnostic ignored "-Wstrict-prototypes"
+#include <gtk/gtk.h>
+#pragma GCC diagnostic error "-Wstrict-prototypes"
+
+int main(void)
+{
+ gtk_info_bar_new();
+
+ return 0;
+}