11 lines
178 B
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;
|
||
|
}
|