 f14fb60209
			
		
	
	
		f14fb60209
		
	
	
	
	
		
			
			* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*	$NetBSD: compat_fts.c,v 1.6 2012/03/15 16:47:38 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
 | |
| 
 | |
| #include "gen/fts.c"
 |