Browse Source

Doh! I forgot to commit this...

Eric Andersen 23 years ago
parent
commit
213ba4a106
1 changed files with 3 additions and 3 deletions
  1. 3 3
      libc/misc/glob/glob.c

+ 3 - 3
libc/misc/glob/glob.c

@@ -26,10 +26,10 @@ Cambridge, MA 02139, USA.  */
 #include <fnmatch.h>
 #include <fnmatch.h>
 #include <glob.h>
 #include <glob.h>
 
 
+extern __ptr_t (*__glob_opendir_hook) __P ((const char *directory));
+extern void (*__glob_closedir_hook) __P ((__ptr_t stream));
+extern const char *(*__glob_readdir_hook) __P ((__ptr_t stream));
 
 
-__ptr_t (*__glob_opendir_hook) __P ((const char *directory));
-const char *(*__glob_readdir_hook) __P ((__ptr_t stream));
-void (*__glob_closedir_hook) __P ((__ptr_t stream));
 
 
 static int glob_pattern_p __P ((const char *pattern, int quote));
 static int glob_pattern_p __P ((const char *pattern, int quote));
 static int glob_in_dir __P ((const char *pattern, const char *directory,
 static int glob_in_dir __P ((const char *pattern, const char *directory,