diff options
author | Andy Broad <andy@broad.ology.org.uk> | 2015-09-13 14:53:59 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-09-16 07:44:31 -0400 |
commit | ea34f6bdec386db6b5e951fae85f430965078a86 (patch) | |
tree | 3c1548f60453e691f5111f305fc886b746190a84 /unixish.h | |
parent | a843b009aecc0fdd377763bdaee3521fc77b160c (diff) | |
download | perl-ea34f6bdec386db6b5e951fae85f430965078a86.tar.gz |
amigaos4: use #ifdef/ifndef __amigaos4__ when feasible
Diffstat (limited to 'unixish.h')
-rw-r--r-- | unixish.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ #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)) #endif |