summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unixish.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unixish.h b/unixish.h
index a3985e15b5..5b57138968 100644
--- a/unixish.h
+++ b/unixish.h
@@ -125,11 +125,11 @@
#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)