chiark / gitweb /
4d8c8d36c20505770795723b4309b98452aa6b76
[elogind.git] / klibc / include / klibc / diverr.h
1 /*
2  * klibc/diverr.h
3  */
4
5 #ifndef _KLIBC_DIVERR_H
6 #define _KLIBC_DIVERR_H
7
8 #include <signal.h>
9
10 static __inline__ void
11 __divide_error(void)
12 {
13   raise(SIGFPE);
14 }
15
16 #endif /* _KLIBC_DIVERR_H */