License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / build / feature / test-gtk2.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
7ef9e055
IM
2#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{
1e3f30fa 8 gtk_init(&argc, &argv);
7ef9e055
IM
9
10 return 0;
11}