dbus/test/test-exit.c
Simon McVittie 4aa7052c6f test-exit: Add a permissive license
Red Hat have previously given permission for relicensing, and all
subsequent contributions to this file were trivial.

Signed-off-by: Simon McVittie <smcv@collabora.com>
2022-10-12 12:08:38 +00:00

14 lines
203 B
C

/*
* Copyright 2003 Red Hat, Inc.
* SPDX-License-Identifier: MIT
*/
#include "config.h"
/* This is a process that just exits with a failure code */
int
main (int argc, char **argv)
{
return 1;
}