On Thu, 17 Jun 2004, Jonathan Worthington wrote:
> I should find time in the next couple of days to implement stat.c for Win32,
> at which point with any luck we'll have a working Parrot on Win32 again.
You might try grabbing the section from perl5's perl.h header which does
things like
#ifndef S_IFMT
# ifdef _S_IFMT
# define S_IFMT _S_IFMT
# else
# define S_IFMT 0170000
# endif
#endif
#ifndef S_ISDIR
# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
#endif
[etc.]
to see if that helps.
--
Andy Dougherty [EMAIL PROTECTED]