diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-24 04:27:55 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-24 04:27:55 +0000 |
commit | 2e64bfdbad05def7e878bb2b347fbafc957b682e (patch) | |
tree | 95e059dbe56f869ae1c696550673628d3dcabd5b /dosish.h | |
parent | 18981f991ffaee2e6262d48c2421325014f5c4f4 (diff) | |
download | perl-2e64bfdbad05def7e878bb2b347fbafc957b682e.tar.gz |
WinCE update from Vadim Konovalov.
p4raw-id: //depot/perl@19051
Diffstat (limited to 'dosish.h')
-rw-r--r-- | dosish.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,7 +6,6 @@ * License or the Artistic License, as specified in the README file. * */ - #define ABORT() abort(); #ifndef SH_PATH @@ -79,8 +78,12 @@ #if defined(WIN64) || defined(USE_LARGE_FILES) #define Stat_t struct _stati64 #else +#if defined(UNDER_CE) +#define Stat_t struct xcestat +#else #define Stat_t struct stat #endif +#endif /* USE_STAT_RDEV: * This symbol is defined if this system has a stat structure declaring |