mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
15 lines
252 B
C
15 lines
252 B
C
/*
|
|
* (C) Copyright 2002
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/* Replacement (=dummy) for GNU/Linux division-by zero handler */
|
|
void __div0 (void)
|
|
{
|
|
extern void hang (void);
|
|
|
|
hang();
|
|
}
|