diff options
| author | matt <matt@NetBSD.org> | 1998-10-30 16:56:30 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 1998-10-30 16:56:30 +0000 |
| commit | 2e00799098644ae643d7316e2e7b6e5391cd74bc (patch) | |
| tree | 68924e04eca8ebeebf3d75e17ef2ea3a1903f612 /sys/lib | |
| parent | e09bc9ea4d2954726d3a6c2e8be65f0c6924e66a (diff) | |
Conditionalize include of <lib/libkern/libkern.h> with _STANDALONE (like
libsa/nfs.c does). Fixes VAX libsa build problem.
Diffstat (limited to 'sys/lib')
| -rw-r--r-- | sys/lib/libsa/ustarfs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/ustarfs.c b/sys/lib/libsa/ustarfs.c index 0f8f5d82695..fa429c3d5a8 100644 --- a/sys/lib/libsa/ustarfs.c +++ b/sys/lib/libsa/ustarfs.c @@ -1,4 +1,4 @@ -/* $NetBSD: ustarfs.c,v 1.4 1998/10/15 18:01:49 bad Exp $ */ +/* $NetBSD: ustarfs.c,v 1.5 1998/10/30 16:56:30 matt Exp $ */ /* [Notice revision 2.2] * Copyright (c) 1997, 1998 Avalon Computer Systems, Inc. @@ -55,7 +55,11 @@ * */ +#ifdef _STANDALONE #include <lib/libkern/libkern.h> +#else +#include <string.h> +#endif #include "stand.h" #include "ustarfs.h" |
