Fix submodules for realsies

This commit is contained in:
wheremyfoodat 2022-09-28 17:25:35 +03:00
parent 4d1bb6f866
commit 4395013118
1837 changed files with 212975 additions and 55881 deletions

View file

@ -6,7 +6,7 @@
int main(int argc, char** argv) {
// Put the string on the heap to make sure heap initialization works
const char* buffer = calloc(6969, sizeof(char));
char* buffer = calloc(6969, sizeof(char));
strcpy(buffer, "Hello world\n");
svcOutputDebugString(buffer, strlen(buffer));