5 lines
91 B
C
5 lines
91 B
C
static inline void __divide_error(void)
|
|
{
|
|
asm volatile("int $0"); /* Divide by zero */
|
|
}
|