mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
8e59d8602c
This ensures we build with -Werror=missing-parameter-type. https://bugzilla.gnome.org/show_bug.cgi?id=687385
9 lines
92 B
C
9 lines
92 B
C
#include <glib.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
g_assert(42 < 0);
|
|
return 0;
|
|
}
|
|
|