Files
glib/tests/assert-msg-test.c
Simon McVittie b064c9db0f Normalize C source files to end with exactly one newline
Some editors automatically remove trailing blank lines, or
automatically add a trailing newline to avoid having a trailing
non-blank line that is not terminated by a newline. To avoid unrelated
whitespace changes when users of such editors contribute to GLib,
let's pre-emptively normalize all files.

Signed-off-by: Simon McVittie <smcv@collabora.com>
2020-04-21 14:50:31 +01:00

8 lines
91 B
C

#include <glib.h>
int main(int argc, char **argv)
{
g_assert(42 < 0);
return 0;
}