summaryrefslogtreecommitdiff
path: root/test/test-exit.c
blob: 52de21fd419cb657bc1e5858ceb83fb10dd71ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * 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;
}