repo.or.cz
/
linux-2.6
/
btrfs-unstable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git]
/
tools
/
virtio
/
linux
/
bug.h
blob
b14c2c3b6b85782d67c74ec9d01aa83e1207a84e
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef BUG_H
3
#define BUG_H
4
5
#define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
6
7
#define BUILD_BUG_ON(x)
8
9
#define BUG() abort()
10
11
#endif
/* BUG_H */