Skip to content

Commit

Permalink
debug2
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Jan 26, 2025
1 parent 8ef11b6 commit 8e796fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ncpathmgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ EXTERNL int NCclosedir(DIR* ent);
#define NCrmdir(path) rmdir(path)
#define NCunlink(path) unlink(path)
#ifdef HAVE_SYS_STAT_H
#define NCstat(path,buf) xstat(path,buf)
#define NCstat(path,buf) stat(path,buf)
#endif
#ifdef HAVE_DIRENT_H
#define NCopendir(path) opendir(path)
Expand All @@ -253,7 +253,7 @@ EXTERNL int NCclosedir(DIR* ent);
#define WTAG(x) x
#define NCmkdir(path,mode) mkdir(path,mode)
#ifdef HAVE_SYS_STAT_H
#define NCstat(path,buf) ystat(path,buf)
#define NCstat(path,buf) stat(path,buf)
#endif /*HAVE_SYS_STAT_H*/
#endif /*!WINPATH*/
#define NCaccess(path,mode) WTAG(access(path,mode))
Expand Down

0 comments on commit 8e796fe

Please sign in to comment.