Fixed double type signature
This commit is contained in:
parent
8c98b5b88c
commit
2fd89dbd39
1 changed files with 2 additions and 2 deletions
|
@ -101,13 +101,13 @@ void my_close(struct my_openfile_s* mos)
|
|||
}
|
||||
|
||||
|
||||
uae_s64 int my_lseek(struct my_openfile_s* mos,const uae_s64 int offset, const int pos)
|
||||
uae_s64 my_lseek(struct my_openfile_s* mos,const uae_s64 offset, const int pos)
|
||||
{
|
||||
return lseek(int(mos->h), offset, pos);
|
||||
}
|
||||
|
||||
|
||||
uae_s64 int my_fsize(struct my_openfile_s* mos)
|
||||
uae_s64 my_fsize(struct my_openfile_s* mos)
|
||||
{
|
||||
uae_s64 pos = lseek(int(mos->h), 0, SEEK_CUR);
|
||||
uae_s64 size = lseek(int(mos->h), 0, SEEK_END);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue