original_kernel/tools/perf/config/feature-checks/test-gtk2-infobar.c

11 lines
178 B
C

#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;
}