Browse Source

Use __open|__closedir

Peter S. Mazinger 18 years ago
parent
commit
ab9d3f10ea
1 changed files with 3 additions and 0 deletions
  1. 3 0
      libc/sysdeps/linux/common/getcwd.c

+ 3 - 0
libc/sysdeps/linux/common/getcwd.c

@@ -1,5 +1,8 @@
 /* These functions find the absolute path to the current working directory.  */
 
+#define opendir __opendir
+#define closedir __closedir
+
 #include <stdlib.h>
 #include <errno.h>
 #include <sys/stat.h>