1/*
2 * Copyright (c) 2003, Intel Corporation. All rights reserved.
3 * Created by:  salwan.searty REMOVE-THIS AT intel DOT com
4 * This file is licensed under the GPL license.  For the full content
5 * of this license, see the COPYING file at the top level of this
6 * source tree.
7 *
8 * Simply, if sigrelse returns a 0 here, test passes.
9 *
10 */
11#define _XOPEN_SOURCE 600
12
13#include <stdio.h>
14#include <signal.h>
15#include "posixtest.h"
16
17int main(void)
18{
19	if (sigrelse(SIGABRT) != 0) {
20		perror("Sigrelse failed");
21		return PTS_UNRESOLVED;
22	}
23	printf("Test PASSED\n");
24	return PTS_PASS;
25}
26