diff options
| author | christos <christos@NetBSD.org> | 2008-06-16 13:02:08 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2008-06-16 13:02:08 +0000 |
| commit | ddbb9c58dd228161b4e78088e515af2280bcd27d (patch) | |
| tree | c4fa62de14a8776e10e58b3915049583afd5b1ff /common/lib/libc | |
| parent | f9e99b470b7ce1d9d9378b6c472dc03d8fab8bf4 (diff) | |
We don't need any of this in standalone mode.
Diffstat (limited to 'common/lib/libc')
| -rw-r--r-- | common/lib/libc/sys/cpuset.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/lib/libc/sys/cpuset.c b/common/lib/libc/sys/cpuset.c index 5f76f5b2b73..07f6e095531 100644 --- a/common/lib/libc/sys/cpuset.c +++ b/common/lib/libc/sys/cpuset.c @@ -1,4 +1,4 @@ -/* $NetBSD: cpuset.c,v 1.6 2008/06/16 02:53:32 christos Exp $ */ +/* $NetBSD: cpuset.c,v 1.7 2008/06/16 13:02:08 christos Exp $ */ /*- * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -29,9 +29,10 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef _STANDALONE #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: cpuset.c,v 1.6 2008/06/16 02:53:32 christos Exp $"); +__RCSID("$NetBSD: cpuset.c,v 1.7 2008/06/16 13:02:08 christos Exp $"); #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -187,3 +188,4 @@ kcpuset_unuse(cpuset_t *c, cpuset_t **lst) *lst = c; } #endif +#endif |
