Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libc/gen/glob.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- src/lib/libc/gen/glob.c 1997/07/13 19:15:11 1.6 +++ src/lib/libc/gen/glob.c 1997/07/21 14:07:17 1.7 @@ -1,4 +1,4 @@ -/* $NetBSD: glob.c,v 1.6 1997/07/13 19:15:11 christos Exp $ */ +/* $NetBSD: glob.c,v 1.7 1997/07/21 14:07:17 jtc Exp $ */ /* * Copyright (c) 1989, 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; #else -__RCSID("$NetBSD: glob.c,v 1.6 1997/07/13 19:15:11 christos Exp $"); +__RCSID("$NetBSD: glob.c,v 1.7 1997/07/21 14:07:17 jtc Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -70,6 +70,7 @@ __RCSID("$NetBSD: glob.c,v 1.6 1997/07/1 * Number of matches in the current invocation of glob. */ +#include "namespace.h" #include #include @@ -83,6 +84,11 @@ __RCSID("$NetBSD: glob.c,v 1.6 1997/07/1 #include #include +#ifdef __weak_alias +__weak_alias(glob,_glob); +__weak_alias(globfree,_globfree); +#endif + #define DOLLAR '$' #define DOT '.' #define EOS '\0'