15 lines
179 B
C
15 lines
179 B
C
|
#ifndef _YGGDRASIL_STDLIB_H
|
||
|
#define _YGGDRASIL_STDLIB_H 1
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
[[noreturn]] void abort(void);
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|