This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 99fff99d79, af4291a8594
[perl5.git] / unixish.h
index 69b0eb9..5b57138 100644 (file)
--- a/unixish.h
+++ b/unixish.h
 
 #define Stat(fname,bufptr) stat((fname),(bufptr))
 
-#if defined(__amigaos4__)
+#ifdef __amigaos4__
 int afstat(int fd, struct stat *statb);
-#    define Fstat(fd,bufptr) afstat((fd),(bufptr))
+#  define Fstat(fd,bufptr) afstat((fd),(bufptr))
 #endif
 
 #ifndef Fstat
-#    define Fstat(fd,bufptr)   fstat((fd),(bufptr))
+#  define Fstat(fd,bufptr)   fstat((fd),(bufptr))
 #endif
 
 #define Fflush(fp)         fflush(fp)