From 7d824b7b7ec0bc2dc921a22e20c11039c46c75b5 Mon Sep 17 00:00:00 2001 From: cpg Date: Sat, 19 Feb 2005 00:59:46 +0000 Subject: [PATCH] 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 --- include/dio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/dio.h b/include/dio.h index 11f2e211e..018a4cbc8 100644 --- a/include/dio.h +++ b/include/dio.h @@ -6,7 +6,7 @@ /* */ /* */ /* */ -/* (C) 2000 Christian Groessler */ +/* (C) 2005 Christian Groessler */ /* */ /* */ /* 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 -- 2.39.5