chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / include / arch / i386 / klibc / diverr.h
1 /*
2  * arch/i386/include/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   asm volatile("divl %0" :: "rm" (0) : "eax", "edx");
14 }
15
16 #endif /* _KLIBC_DIVERR_H */