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
28 lines
626 B
C
28 lines
626 B
C
/* $NetBSD: lfsv2.c,v 1.5 2012/05/21 21:34:16 dsl Exp $ */
|
|
|
|
#define LIBSA_LFS
|
|
#define REQUIRED_LFS_VERSION 2
|
|
|
|
#define ufs_open lfsv2_open
|
|
#define ufs_close lfsv2_close
|
|
#define ufs_read lfsv2_read
|
|
#define ufs_write lfsv2_write
|
|
#define ufs_seek lfsv2_seek
|
|
#define ufs_stat lfsv2_stat
|
|
#if defined(LIBSA_ENABLE_LS_OP)
|
|
#define ufs_ls lfsv2_ls
|
|
#endif
|
|
|
|
#define fs_bsize lfs_bsize
|
|
#define IFILE_Vx IFILE
|
|
|
|
#ifdef LFS_IFILE_FRAG_ADDRESSING /* XXX see sys/ufs/lfs/ -- not tested */
|
|
#define INOPBx(fs) INOPF(fs)
|
|
#else
|
|
#define INOPBx(fs) INOPB(fs)
|
|
#endif
|
|
|
|
#define FSMOD "lfs"
|
|
#define FSMOD2 "ffs"
|
|
|
|
#include "lib/libsa/ufs.c"
|