| version 1.4.4.1, 1995/05/02 19:34:51 |
version 1.5, 1995/02/27 04:13:35 |
|
|
| |
/* $NetBSD$ */ |
| |
|
| /* |
/* |
| * Copyright (c) 1989, 1993 |
* Copyright (c) 1989, 1993 |
| * The Regents of the University of California. All rights reserved. |
* The Regents of the University of California. All rights reserved. |
|
|
| */ |
*/ |
| |
|
| #if defined(LIBC_SCCS) && !defined(lint) |
#if defined(LIBC_SCCS) && !defined(lint) |
| /* from: static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; */ |
#if 0 |
| static char *rcsid = "$Id$"; |
static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; |
| |
#else |
| |
static char rcsid[] = "$NetBSD$"; |
| |
#endif |
| #endif /* LIBC_SCCS and not lint */ |
#endif /* LIBC_SCCS and not lint */ |
| |
|
| /* |
/* |
| Line 64 static char *rcsid = "$Id$"; |
|
| Line 69 static char *rcsid = "$Id$"; |
|
| * Number of matches in the current invocation of glob. |
* Number of matches in the current invocation of glob. |
| */ |
*/ |
| |
|
| #include "namespace.h" |
|
| #include <sys/param.h> |
#include <sys/param.h> |
| #include <sys/stat.h> |
#include <sys/stat.h> |
| |
|