Subject: CVS commit: src
To: None <source-changes@netbsd.org>
From: Klaus Klein <kleink@netbsd.org>
List: source-changes
Date: 10/12/1998 08:56:17
Module Name:	src
Committed By:	kleink
Date:		Mon Oct 12 15:56:17 UTC 1998

Modified Files:
	src/lib/libc/stdlib: abort.c
Log Message:
Exit via _exit() rather than exit(), as the latter would cause exit handlers
installed using atexit() to be executed which is supposed to happen on
`normal termination' of the process only, whereas abort() is specifically
defined to cause `abnormal termination'.