linuxOS_D21X/source/uboot-2021.10/arch/arm/lib/div0.c

14 lines
241 B
C
Raw Normal View History

2024-11-29 08:13:19 +00:00
// SPDX-License-Identifier: GPL-2.0+
/*
* (C) Copyright 2002
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
#include <hang.h>
/* Replacement (=dummy) for GNU/Linux division-by zero handler */
void __div0 (void)
{
hang();
}