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.
24 lines
614 B
C
24 lines
614 B
C
/* $NetBSD: compat_opendir.c,v 1.1 2005/09/13 01:44:09 christos Exp $ */
|
|
|
|
#include "namespace.h"
|
|
#include <sys/stat.h>
|
|
#include <signal.h>
|
|
|
|
#define __LIBC12_SOURCE__
|
|
#include <dirent.h>
|
|
#include <compat/include/dirent.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(opendir,_opendir)
|
|
#endif
|
|
|
|
#ifdef __warn_references
|
|
__warn_references(opendir,
|
|
"warning: reference to compatibility opendir(); include <dirent.h> for correct reference")
|
|
__warn_references(__opendir2,
|
|
"warning: reference to compatibility __opendir2(); include <dirent.h> for correct reference")
|
|
#endif
|
|
|
|
#define dirent dirent12
|
|
|
|
#include "gen/opendir.c"
|