projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
SPDX: Convert all of our single license tags to Linux Kernel style
[platform/kernel/u-boot.git]
/
arch
/
arm
/
lib
/
div0.c
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* (C) Copyright 2002
4
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
*/
6
7
/* Replacement (=dummy) for GNU/Linux division-by zero handler */
8
void __div0 (void)
9
{
10
extern void hang (void);
11
12
hang();
13
}