b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
31 lines
819 B
C
31 lines
819 B
C
/* $NetBSD: compat_glob.c,v 1.2 2009/01/11 02:46:25 christos Exp $ */
|
|
|
|
/*
|
|
* Written by Jason R. Thorpe <thorpej@NetBSD.org>, October 21, 1997.
|
|
* Public domain.
|
|
*/
|
|
#include "namespace.h"
|
|
#include <pwd.h>
|
|
#define __LIBC12_SOURCE__
|
|
|
|
#include <sys/stat.h>
|
|
#include <compat/sys/time.h>
|
|
#include <compat/sys/stat.h>
|
|
#include <dirent.h>
|
|
#include <compat/include/dirent.h>
|
|
#define __gl_stat_t struct stat12
|
|
|
|
#include <glob.h>
|
|
#include <compat/include/glob.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(glob,_glob)
|
|
__weak_alias(globfree,_globfree)
|
|
#endif /* __weak_alias */
|
|
|
|
__warn_references(glob,
|
|
"warning: reference to compatibility glob(); include <glob.h> for correct reference")
|
|
__warn_references(globfree,
|
|
"warning: reference to compatibility globfree(); include <glob.h> for correct reference")
|
|
|
|
#include "gen/glob.c"
|