compile into nothing if _STANDALONE

This commit is contained in:
christos 2011-11-14 16:21:44 +00:00
parent 14767c9d30
commit 28bb169a57

View File

@ -1,4 +1,4 @@
/* $NetBSD: getfstypename.c,v 1.4 2011/11/14 14:37:13 christos Exp $ */ /* $NetBSD: getfstypename.c,v 1.5 2011/11/14 16:21:44 christos Exp $ */
/*- /*-
* Copyright (c) 2011 The NetBSD Foundation, Inc. * Copyright (c) 2011 The NetBSD Foundation, Inc.
@ -35,22 +35,23 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #ifndef _STANDALONE
#if !defined(_KERNEL) && !defined(_STANDALONE) # include <sys/cdefs.h>
# if !defined(lint) # ifndef _KERNEL
__RCSID("$NetBSD: getfstypename.c,v 1.4 2011/11/14 14:37:13 christos Exp $"); # if !defined(lint)
# endif __RCSID("$NetBSD: getfstypename.c,v 1.5 2011/11/14 16:21:44 christos Exp $");
#else # endif
__KERNEL_RCSID(0, "$NetBSD: getfstypename.c,v 1.4 2011/11/14 14:37:13 christos Exp $"); # else
#endif __KERNEL_RCSID(0, "$NetBSD: getfstypename.c,v 1.5 2011/11/14 16:21:44 christos Exp $");
# endif /* _KERNEL */
#define FSTYPE_ENUMNAME fstype_enum # define FSTYPE_ENUMNAME fstype_enum
#include <sys/types.h> # include <sys/types.h>
#include <sys/disk.h> # include <sys/disk.h>
#include <sys/disklabel.h> # include <sys/disklabel.h>
#if !defined(_KERNEL) && !defined(_STANDALONE) # ifndef _KERNEL
#include <util.h> # include <util.h>
#endif # endif
const char * const char *
getfstypename(int fstype) getfstypename(int fstype)
@ -124,3 +125,4 @@ getfstypename(int fstype)
/* Stupid gcc, should know it is impossible to get here */ /* Stupid gcc, should know it is impossible to get here */
return DKW_PTYPE_UNKNOWN; return DKW_PTYPE_UNKNOWN;
} }
#endif /* !_STANDALONE */