mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-25 08:06:49 +03:00
13 lines
291 B
C
13 lines
291 B
C
|
#ifndef _ASM_GENERIC_BUG_H
|
||
|
#define _ASM_GENERIC_BUG_H
|
||
|
|
||
|
|
||
|
|
||
|
#define WARN(condition, format...) ({ \
|
||
|
int __ret_warn_on = !!(condition); \
|
||
|
unlikely(__ret_warn_on); \
|
||
|
})
|
||
|
|
||
|
|
||
|
#endif
|