mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
9 lines
227 B
C
9 lines
227 B
C
|
#include <string.h>
|
||
|
#include "utils.h"
|
||
|
#include "kernel_patches.c"
|
||
|
|
||
|
void package2_patch_kernel(void *kernel, size_t size) {
|
||
|
(void)kernel;
|
||
|
(void)size;
|
||
|
/* TODO: What kind of patching do we want to try to do here? */
|
||
|
}
|