2012-11-15 12:06:41 +01:00
|
|
|
/* $NetBSD: compat_fts.c,v 1.6 2012/03/15 16:47:38 christos Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2012-11-15 12:06:41 +01:00
|
|
|
#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
|
|
|
|
|
2011-02-14 20:36:03 +01:00
|
|
|
#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
|
|
|
|
|
|
|
|
#include "gen/fts.c"
|