From c25385afa2ee7b7f1a514a4083ce4db3ff4413e6 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 21 Oct 2003 19:54:35 +0000 Subject: [PATCH] Fixed _HAVE_off_t git-svn-id: svn://svn.cc65.org/cc65/trunk@2554 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/sys/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/sys/types.h b/include/sys/types.h index 0eb415186..087bff5d8 100644 --- a/include/sys/types.h +++ b/include/sys/types.h @@ -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 -- 2.39.5