summaryrefslogtreecommitdiff
path: root/unixish.h
diff options
context:
space:
mode:
authorAndy Broad <andy@broad.ology.org.uk>2015-09-13 14:53:59 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-09-16 07:44:31 -0400
commitea34f6bdec386db6b5e951fae85f430965078a86 (patch)
tree3c1548f60453e691f5111f305fc886b746190a84 /unixish.h
parenta843b009aecc0fdd377763bdaee3521fc77b160c (diff)
downloadperl-ea34f6bdec386db6b5e951fae85f430965078a86.tar.gz
amigaos4: use #ifdef/ifndef __amigaos4__ when feasible
Diffstat (limited to 'unixish.h')
-rw-r--r--unixish.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unixish.h b/unixish.h
index 69b0eb936b..a3985e15b5 100644
--- a/unixish.h
+++ b/unixish.h
@@ -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