2022-06-06 15:19:57 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2003 Red Hat, Inc.
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
|
|
|
|
|
2013-02-18 14:30:22 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2003-04-05 00:37:17 +00:00
|
|
|
/* This is a process that just exits with a failure code */
|
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|