mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-20 08:00:11 +01:00
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>
14 lines
203 B
C
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;
|
|
}
|