From 75696441101b80b9371258e4b1014f06fcd19404 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Mon, 27 May 2024 18:43:20 +0200 Subject: [PATCH] correct getcwd --- prospero/include/pmachine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prospero/include/pmachine.h b/prospero/include/pmachine.h index 3045df5..b0c51b2 100644 --- a/prospero/include/pmachine.h +++ b/prospero/include/pmachine.h @@ -194,7 +194,7 @@ /* * getwd: server/pstart.c */ -#if defined(HPUX) || defined(SYSV) || defined(SOLARIS) +#if defined(HPUX) || defined(SYSV) #define getwd(d) getcwd(d, MAXPATHLEN) #endif