mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 11:41:43 +00:00
17 lines
230 B
C++
17 lines
230 B
C++
|
#include <switch.h>
|
||
|
#include <cstring>
|
||
|
#include "debug.hpp"
|
||
|
|
||
|
static u64 g_num_logged = 0;
|
||
|
|
||
|
#define MAX_LOGS U64_MAX
|
||
|
|
||
|
void Reboot() {
|
||
|
while (1) {
|
||
|
/* ... */
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Log(const void *data, int size) {
|
||
|
/* ... */
|
||
|
}
|