]> git.sur5r.net Git - cc65/commitdiff
Use FileStat instead of stat.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Apr 2012 13:28:33 +0000 (13:28 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Apr 2012 13:28:33 +0000 (13:28 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5640 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/sim65/main.c

index cddad788724834f19321bf5bdff860f40c21a8c5..c0c6c44fd306e33a150fd38774fd3c328a0e309d 100644 (file)
 #include <string.h>
 #include <stdlib.h>
 #include <errno.h>
-#include <sys/types.h>
-#include <sys/stat.h>
 #include <dirent.h>
 #include <unistd.h>
 
 /* common */
 #include "abend.h"
 #include "cmdline.h"
+#include "filestat.h"
 #include "print.h"
 #include "version.h"
 #include "xmalloc.h"
@@ -128,7 +127,7 @@ static void OptChipDir (const char* Opt attribute ((unused)), const char* Arg)
         strcpy (Name + DirLen + 1, E->d_name);
 
         /* Stat the file */
-        if (stat (Name, &S) != 0) {
+        if (FileStat (Name, &S) != 0) {
             Warning ("Cannot stat `%s': %s", Name, strerror (errno));
             xfree (Name);
             continue;