Skip to content

Commit

Permalink
Merge pull request ps2homebrew#802 from uyjulian/fix_wrong_iomanx_import
Browse files Browse the repository at this point in the history
Fix wrong iomanX import
  • Loading branch information
AKuHAK committed Nov 17, 2022
2 parents 58bc41a + 153d5e4 commit cc64088
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/isofs/imports.lst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ I_SignalSema
I_WaitSema
thsemap_IMPORTS_end

ioman_IMPORTS_start
iomanX_IMPORTS_start
I_open
I_close
I_read
I_lseek
I_AddDrv
ioman_IMPORTS_end
iomanX_IMPORTS_end

sysclib_IMPORTS_start
I_memset
Expand Down
2 changes: 1 addition & 1 deletion modules/isofs/irx_imports.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <irx.h>

/* Please keep these in alphabetical order! */
#include <ioman.h>
#include <iomanX.h>
#include <stdio.h>
#include <sysclib.h>
#include <thsemap.h>
Expand Down
1 change: 1 addition & 0 deletions modules/network/lwnbdsvr/platform-ps2.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <ps2ip.h>
#include <sysclib.h>
#include <stdint.h>
#include <iomanX.h>

#define assert(expr) \
((expr) || \
Expand Down
4 changes: 2 additions & 2 deletions modules/vmc/genvmc/imports.lst
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ cdvdman_IMPORTS_start
I_sceCdRC
cdvdman_IMPORTS_end

ioman_IMPORTS_start
iomanX_IMPORTS_start
I_DelDrv
I_AddDrv
I_open
I_lseek
I_write
I_close
I_remove
ioman_IMPORTS_end
iomanX_IMPORTS_end

intrman_IMPORTS_start
I_CpuSuspendIntr
Expand Down
2 changes: 1 addition & 1 deletion modules/vmc/genvmc/irx_imports.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include <cdvdman.h>
#include <intrman.h>
#include <ioman.h>
#include <iomanX.h>
#include <mcman.h>
#ifdef DEBUG
#include <stdio.h>
Expand Down

0 comments on commit cc64088

Please sign in to comment.