diff options
| author | dsl <dsl@NetBSD.org> | 2009-01-24 23:07:48 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2009-01-24 23:07:48 +0000 |
| commit | 4802ea584f1fea6810a065c735602db6eeacbf5e (patch) | |
| tree | 03b6f9f8686e3f5825d68e3f22b801a4c0ce8984 /usr.bin/make/make_malloc.c | |
| parent | 66063c53a61b2982b330d19b7702c16c4182a204 (diff) | |
Add #ifndef MAKE_NATIVE around __RCSID
Diffstat (limited to 'usr.bin/make/make_malloc.c')
| -rw-r--r-- | usr.bin/make/make_malloc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/make/make_malloc.c b/usr.bin/make/make_malloc.c index 4f240479551..3e3b794089e 100644 --- a/usr.bin/make/make_malloc.c +++ b/usr.bin/make/make_malloc.c @@ -1,4 +1,4 @@ -/* $NetBSD: make_malloc.c,v 1.3 2009/01/24 14:43:28 dsl Exp $ */ +/* $NetBSD: make_malloc.c,v 1.4 2009/01/24 23:07:48 dsl Exp $ */ /*- * Copyright (c) 2009 The NetBSD Foundation, Inc. @@ -26,8 +26,10 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef MAKE_NATIVE #include <sys/cdefs.h> -__RCSID("$NetBSD: make_malloc.c,v 1.3 2009/01/24 14:43:28 dsl Exp $"); +__RCSID("$NetBSD: make_malloc.c,v 1.4 2009/01/24 23:07:48 dsl Exp $"); +#endif #include <stdio.h> #include <stdlib.h> |
