]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/build/feature/test-gtk2-infobar.c
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / tools / build / feature / test-gtk2-infobar.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
c7a79e96
IM
2#pragma GCC diagnostic ignored "-Wstrict-prototypes"
3#include <gtk/gtk.h>
4#pragma GCC diagnostic error "-Wstrict-prototypes"
5
1e3f30fa 6int main(int argc, char *argv[])
c7a79e96 7{
1e3f30fa 8 gtk_init(&argc, &argv);
c7a79e96
IM
9 gtk_info_bar_new();
10
11 return 0;
12}