Consistently include <config.h> in all C source files and never in header files.
[platform/upstream/dbus.git] / test / test-exit.c
1 /* This is a process that just exits with a failure code */
2 int
3 main (int argc, char **argv)
4 {
5
6   return 1;
7 }