X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fabort.c;h=1847771262a72e8e6a26e2580bc21b9c646d48c7;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=4a15bf898c84f90b9b3e3a83add230f9aa20fc65;hpb=bf5c2e9fac630d11f6232ff7fd90d3060065b53a;p=pdclib diff --git a/functions/stdlib/abort.c b/functions/stdlib/abort.c index 4a15bf8..1847771 100644 --- a/functions/stdlib/abort.c +++ b/functions/stdlib/abort.c @@ -1,8 +1,4 @@ -/* $Id$ */ - -/* Release $Name$ */ - -/* abort() +/* abort( void ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. @@ -13,10 +9,10 @@ #ifndef REGTEST -void abort() +void abort( void ) { raise( SIGABRT ); - exit( 1 ); + exit( EXIT_FAILURE ); } #endif @@ -26,15 +22,14 @@ void abort() #include -static void aborthandler( int signal ) +static void aborthandler( int sig ) { exit( 0 ); } -int main() +int main( void ) { int UNEXPECTED_RETURN_FROM_ABORT = 0; - BEGIN_TESTS; TESTCASE( signal( SIGABRT, &aborthandler ) != SIG_ERR ); abort(); TESTCASE( UNEXPECTED_RETURN_FROM_ABORT );