Files
Tharo 2a152a9676 Apply the NORETURN attribute to functions that do not return (#1768)
* Apply the NORETURN attribute to functions that do not return

* Add NORETURN to debug.c functions
2024-12-22 15:24:47 -08:00

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