The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#if !defined(TH_OS_H)
#define TH_OS_H
#include <sys/types.h>
#include <sys/stat.h>

	#if defined(__MINGW32__) || defined(__MINGW64__) 
		typedef struct _stati64 STAT; // your bunny microsoft
	#else
		typedef struct stat STAT;
	#endif


#endif