dbus/test/test-exit.c
Simon McVittie 4a0b41ee31 Include config.h as the first thing in every .c file
...except for CheckForAbstractSockets.c, which runs before config.h is
generated, and sd-daemon.c, which is externally-maintained.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=59971
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Reviewed-by: Colin Walters <walters@verbum.org>
2013-02-22 13:08:27 +00:00

9 lines
131 B
C

#include "config.h"
/* This is a process that just exits with a failure code */
int
main (int argc, char **argv)
{
return 1;
}