mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14685 87f5fb63-7c3d-0410-a384-fd976d0f7a62
20 lines
352 B
C
20 lines
352 B
C
/*
|
|
* $Id: sas_cxferr.c,v 1.1.1.1 2004-07-26 16:31:03 obarthel Exp $
|
|
*
|
|
* :ts=4
|
|
*
|
|
* Adapted from SAS/C runtime library code.
|
|
*/
|
|
|
|
#ifndef _SIGNAL_HEADERS_H
|
|
#include "signal_headers.h"
|
|
#endif /* _SIGNAL_HEADERS_H */
|
|
|
|
/****************************************************************************/
|
|
|
|
void __stdargs
|
|
_CXFERR(int code)
|
|
{
|
|
raise(SIGFPE);
|
|
}
|