diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-13 04:49:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-13 04:49:49 +0000 |
commit | 0fc6770084b6606cb6c321fceeb12a351dbf8423 (patch) | |
tree | 455c487d08de19900d409fd44838106bbe0b15b8 /perl.h | |
parent | 12a63d119c7e6cac4caa17e05e943423ee309496 (diff) | |
download | perl-0fc6770084b6606cb6c321fceeb12a351dbf8423.tar.gz |
Cleanup messy #ifdef.
p4raw-id: //depot/perl@7667
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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); |