Skip to content

Commit

Permalink
fix: use current set of size reduction functions for loader
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Aug 31, 2024
1 parent aa7be34 commit ac70a8f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions loader/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include "string.h"
#include "iopheap.h"
#include "errno.h"
#include "ps2sdkapi.h"
//--------------------------------------------------------------

//--------------------------------------------------------------
Expand All @@ -42,8 +43,13 @@
// DON'T REMOVE is for reducing binary size.
// These funtios are defined as weak in /libc/src/init.c
//--------------------------------------------------------------
void _ps2sdk_libc_init() {}
void _ps2sdk_libc_deinit() {}
void _libcglue_init() {}
void _libcglue_deinit() {}
void _libcglue_args_parse(int argc, char **argv) {}

DISABLE_PATCHED_FUNCTIONS();
DISABLE_EXTRA_TIMERS_FUNCTIONS();
PS2_DISABLE_AUTOSTART_PTHREAD();

//--------------------------------------------------------------
// End of data declarations
Expand Down

0 comments on commit ac70a8f

Please sign in to comment.