1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-21 20:29:24 +00:00

dio_query_sectsize is now a real function on the Atari

git-svn-id: svn://svn.cc65.org/cc65/trunk@3393 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2005-02-19 00:59:46 +00:00
parent 03a0c61768
commit 7d824b7b7e

View File

@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 2000 Christian Groessler <cpg@aladdin.de> */
/* (C) 2005 Christian Groessler <cpg@aladdin.de> */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@ -44,7 +44,7 @@ typedef struct {
#ifdef __ATARI__
#define dio_query_sectsize(x) ((sectsize_t)128)
extern sectsize_t __fastcall__ dio_query_sectsize(dhandle_t handle);
#else
#define dio_query_sectsize(x) ((sectsize_t)256)
#endif