X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdlib%2Fabort.c;h=b7f09777cd3923a82ace7f8a8135239efbb5dca4;hp=4a15bf898c84f90b9b3e3a83add230f9aa20fc65;hb=e25ac2ecee6251afcec84e08165e454fb6bc256c;hpb=bf5c2e9fac630d11f6232ff7fd90d3060065b53a diff --git a/functions/stdlib/abort.c b/functions/stdlib/abort.c index 4a15bf8..b7f0977 100644 --- a/functions/stdlib/abort.c +++ b/functions/stdlib/abort.c @@ -2,7 +2,7 @@ /* 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,7 +13,7 @@ #ifndef REGTEST -void abort() +void abort( void ) { raise( SIGABRT ); exit( 1 );