diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-16 22:29:11 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-16 22:29:11 +0000 |
commit | bf0c440fce1b379160a009c06867702b38dd9366 (patch) | |
tree | fbd0c1092cd010a36b029b3a774694d934b76735 /perl.h | |
parent | ca6e1c26e8ac218f83b0cec7616cb26dab979947 (diff) | |
download | perl-bf0c440fce1b379160a009c06867702b38dd9366.tar.gz |
HP-UX 64-bitness/largefile fixes.
p4raw-id: //depot/cfgperl@5119
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2083,9 +2083,9 @@ 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) +# if !defined(EPOC) && !(defined(__hpux) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) Off_t lseek (int,Off_t,int); -#endif +# endif # endif /* !DONT_DECLARE_STD */ char *getlogin (void); #endif /* !__cplusplus */ |