From ee675f30412e22765ab2723a0d98475500d3c751 Mon Sep 17 00:00:00 2001 From: solar Date: Thu, 9 Feb 2006 05:15:02 +0000 Subject: [PATCH] exit( EXIT_FAILURE ) instead of exit( 1 ). git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@143 546481bc-9713-0410-bf18-d3337bbf4a3e --- functions/stdlib/abort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/stdlib/abort.c b/functions/stdlib/abort.c index b7f0977..6a6743f 100644 --- a/functions/stdlib/abort.c +++ b/functions/stdlib/abort.c @@ -16,7 +16,7 @@ void abort( void ) { raise( SIGABRT ); - exit( 1 ); + exit( EXIT_FAILURE ); } #endif -- 2.47.2