summaryrefslogtreecommitdiffstats
path: root/cmake/try_compile/ldwrap.c
blob: cc200e881dca0ef46b54b000cc3bc6876764dadb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdlib.h>

void __real_exit(int status);

void
__wrap_exit(int s)
{
    __real_exit(0);
}

int
main()
{
    exit(1);
    return 0;
}