2023-11-16 23:19:36 -05:00

5 lines
94 B
C

static inline void __divide_error(void)
{
asm volatile ("int $0"); /* Divide by zero */
}