Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
0003 #include <gtk/gtk.h>
0004 #pragma GCC diagnostic error "-Wstrict-prototypes"
0005 
0006 int main(int argc, char *argv[])
0007 {
0008     gtk_init(&argc, &argv);
0009     gtk_info_bar_new();
0010 
0011     return 0;
0012 }