mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
2a152a9676
* Apply the NORETURN attribute to functions that do not return * Add NORETURN to debug.c functions
10 lines
168 B
C
10 lines
168 B
C
#ifndef LIBU64_DEBUG_H
|
|
#define LIBU64_DEBUG_H
|
|
|
|
#include "../attributes.h"
|
|
|
|
NORETURN void _dbg_hungup(const char* file, int lineNum);
|
|
NORETURN void Reset(void);
|
|
|
|
#endif
|