From 3605200c46de2d21a6598342228c3c1592462c3d Mon Sep 17 00:00:00 2001 From: Steven Tamm Date: Sun, 8 Dec 2002 06:00:10 +0000 Subject: [PATCH] Have emacs_read use sys_read on carbon/Mac OS X --- src/sysdep.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sysdep.c b/src/sysdep.c index 322869eb71..265cb61f39 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -69,6 +69,10 @@ static int delete_exited_processes; #endif #endif /* not WINDOWSNT */ +#ifdef HAVE_CARBON +#define read sys_read +#endif + /* Does anyone other than VMS need this? */ #ifndef fwrite #define sys_fwrite fwrite -- 2.39.2