diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-gtk2-infobar.c')
| -rw-r--r-- | tools/perf/config/feature-checks/test-gtk2-infobar.c | 11 | 
1 files changed, 11 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 00000000000..397b4646d06 --- /dev/null +++ b/tools/perf/config/feature-checks/test-gtk2-infobar.c @@ -0,0 +1,11 @@ +#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; +}  | 
