]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - tools/build/feature/test-gtk2-infobar.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[mirror_ubuntu-focal-kernel.git] / tools / build / feature / test-gtk2-infobar.c
1 // SPDX-License-Identifier: GPL-2.0
2 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
3 #include <gtk/gtk.h>
4 #pragma GCC diagnostic error "-Wstrict-prototypes"
5
6 int main(int argc, char *argv[])
7 {
8 gtk_init(&argc, &argv);
9 gtk_info_bar_new();
10
11 return 0;
12 }