Fixed double type signature

This commit is contained in:
midwan 2019-01-06 15:24:22 +01:00
parent 8c98b5b88c
commit 2fd89dbd39

View file

@ -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);