1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Fixed _HAVE_off_t

git-svn-id: svn://svn.cc65.org/cc65/trunk@2554 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-10-21 19:54:35 +00:00
parent b7b9455fcd
commit c25385afa2

View File

@ -45,8 +45,8 @@
/* off_t is also defined in unistd.h */
#ifndef __HAVE_off_t
#define __HAVE_off_t
#ifndef _HAVE_off_t
#define _HAVE_off_t
typedef long int off_t;
#endif