84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/* $NetBSD: compat_fts.c,v 1.8 2013/10/04 21:07:37 christos Exp $ */
|
|
|
|
/*
|
|
* Written by Jason R. Thorpe <thorpej@NetBSD.org>, October 21, 1997.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include "namespace.h"
|
|
#include <sys/cdefs.h>
|
|
#include <dirent.h>
|
|
|
|
#define __LIBC12_SOURCE__
|
|
#include <sys/stat.h>
|
|
#include <compat/sys/time.h>
|
|
#include <compat/sys/stat.h>
|
|
|
|
#define __fts_stat_t struct stat12
|
|
#define __fts_nlink_t u_int16_t
|
|
#define __fts_ino_t u_int32_t
|
|
#define __fts_length_t unsigned short
|
|
#define __fts_number_t long
|
|
#define __fts_dev_t uint32_t
|
|
#define __fts_level_t short
|
|
|
|
#ifndef ftsent_namelen
|
|
#define ftsent_namelen_truncate(a) \
|
|
((a) > USHRT_MAX ? USHRT_MAX : (unsigned short)(a))
|
|
#endif
|
|
#ifndef fts_pathlen_truncate
|
|
#define ftsent_pathlen_truncate(a) \
|
|
((a) > USHRT_MAX ? USHRT_MAX : (unsigned short)(a))
|
|
#endif
|
|
|
|
#include <fts.h>
|
|
#include <compat/include/fts.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fts_children,_fts_children)
|
|
__weak_alias(fts_close,_fts_close)
|
|
__weak_alias(fts_open,_fts_open)
|
|
__weak_alias(fts_read,_fts_read)
|
|
__weak_alias(fts_set,_fts_set)
|
|
#endif /* __weak_alias */
|
|
|
|
__warn_references(fts_children,
|
|
"warning: reference to compatibility fts_children();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_close,
|
|
"warning: reference to compatibility fts_close();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_open,
|
|
"warning: reference to compatibility fts_open();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_read,
|
|
"warning: reference to compatibility fts_read();"
|
|
" include <fts.h> for correct reference")
|
|
__warn_references(fts_set,
|
|
"warning: reference to compatibility fts_set();"
|
|
" include <fts.h> for correct reference")
|
|
|
|
#define __FTS_COMPAT_TAILINGSLASH
|
|
#define __FTS_COMPAT_LENGTH
|
|
#define __FTS_COMPAT_LEVEL
|
|
|
|
#define stat __compat_stat
|
|
#define lstat __compat_lstat
|
|
#define fstat __compat_fstat
|
|
|
|
#include "gen/fts.c"
|