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.5.4.1 retrieving revision 1.5.4.2 diff -u -p -r1.5.4.1 -r1.5.4.2 --- src/lib/libc/gen/glob.c 1996/09/16 18:40:29 1.5.4.1 +++ 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.4.1 1996/09/16 18:40:29 jtc 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.4.1 1996/09/16 18:40:29 jtc 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 */ @@ -83,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'