brintos

brintos / linux-shallow public Read only

0
0
Text · 243 B · 2aaf4bf Raw
12 lines · c
1// SPDX-License-Identifier: GPL-2.02#pragma GCC diagnostic ignored "-Wstrict-prototypes"3#include <gtk/gtk.h>4#pragma GCC diagnostic error "-Wstrict-prototypes"5 6int main(int argc, char *argv[])7{8	gtk_init(&argc, &argv);9 10        return 0;11}12