From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Mon, 13 Nov 2000 04:49:49 +0000 (+0000)
Subject: Cleanup messy #ifdef.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0fc6770084b6606cb6c321fceeb12a351dbf8423;p=p5sagit%2Fp5-mst-13.2.git

Cleanup messy #ifdef.

p4raw-id: //depot/perl@7667
---

diff --git a/perl.h b/perl.h
index 80bf5ae..e4de676 100644
--- a/perl.h
+++ b/perl.h
@@ -2198,8 +2198,12 @@ char *crypt (const char*, const char*);
 #    ifndef getenv
 char *getenv (const char*);
 #    endif /* !getenv */
-#    if !defined(EPOC) && !(defined(__hpux) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) && !defined(HAS_LSEEK_PROTO)
+#    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !(defined(__hpux)
+#      ifdef _FILE_OFFSET_BITS
+#        if_FILE_OFFSET_BITS == 64
 Off_t lseek (int,Off_t,int);
+#        endif
+#      endif
 #    endif
 #  endif /* !DONT_DECLARE_STD */
 char *getlogin (void);