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 | c1b3f03c318d6d053805b2363a31ec3b360d220e (patch) | |
tree | fbd0c1092cd010a36b029b3a774694d934b76735 /perl.h | |
parent | b4f42acd54c53d4cfc93122733505716767de7ea (diff) | |
download | perl-c1b3f03c318d6d053805b2363a31ec3b360d220e.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 */ |