forked from Bananymous/banan-os
14 lines
154 B
C
14 lines
154 B
C
|
#pragma once
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
__attribute__((__noreturn__))
|
||
|
void abort(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|