blob: e70887e534e2cb905bafa4f938d0f2e86d0a9c54 [file] [log] [blame]
/*
* klibc/diverr.h
*/
#ifndef _KLIBC_DIVERR_H
#define _KLIBC_DIVERR_H
#include <signal.h>
static __inline__ void __divide_error(void)
{
raise(SIGFPE);
}
#endif /* _KLIBC_DIVERR_H */