summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-13 04:49:49 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-13 04:49:49 +0000
commit0fc6770084b6606cb6c321fceeb12a351dbf8423 (patch)
tree455c487d08de19900d409fd44838106bbe0b15b8 /perl.h
parent12a63d119c7e6cac4caa17e05e943423ee309496 (diff)
downloadperl-0fc6770084b6606cb6c321fceeb12a351dbf8423.tar.gz
Cleanup messy #ifdef.
p4raw-id: //depot/perl@7667
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 80bf5ae87d..e4de676119 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);