From a0f36c6c29ff6d883b8bbfeaa16450ab269d41f6 Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Fri, 16 Apr 1999 14:01:34 +0000 Subject: [PATCH] Fix test for alpha so we get the osf_stat functions in file.c --- file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file.c b/file.c index e528bf28..14f6beb2 100644 --- a/file.c +++ b/file.c @@ -860,7 +860,7 @@ struct tcb *tcp; return 0; } -#if defined(linux) && defined(alpha) +#if defined(linux) && defined(__alpha) int osf_statfs(tcp) @@ -888,7 +888,7 @@ struct tcb *tcp; } return 0; } -#endif /* linux && alpha */ +#endif /* linux && __alpha */ #endif /* !SVR4 */ -- 2.50.1