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 rcsdiff: /ftp/cvs/cvsroot/src/lib/libc/gen/glob.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.5 retrieving revision 1.5.4.2 diff -u -p -r1.5 -r1.5.4.2 --- src/lib/libc/gen/glob.c 1995/02/27 04:13:35 1.5 +++ src/lib/libc/gen/glob.c 1996/09/19 20:03:12 1.5.4.2 @@ -1,4 +1,4 @@ -/* $NetBSD: glob.c,v 1.5 1995/02/27 04:13:35 cgd Exp $ */ +/* $NetBSD: glob.c,v 1.5.4.2 1996/09/19 20:03:12 jtc Exp $ */ /* * Copyright (c) 1989, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; #else -static char rcsid[] = "$NetBSD: glob.c,v 1.5 1995/02/27 04:13:35 cgd Exp $"; +static char rcsid[] = "$NetBSD: glob.c,v 1.5.4.2 1996/09/19 20:03:12 jtc Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -69,6 +69,7 @@ static char rcsid[] = "$NetBSD: glob.c,v * Number of matches in the current invocation of glob. */ +#include "namespace.h" #include #include @@ -82,6 +83,11 @@ static char rcsid[] = "$NetBSD: glob.c,v #include #include +#ifdef __weak_alias +__weak_alias(glob,_glob); +__weak_alias(globfree,_globfree); +#endif + #define DOLLAR '$' #define DOT '.' #define EOS '\0'