diff options
| author | dholland <dholland@NetBSD.org> | 2014-03-22 20:07:05 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2014-03-22 20:07:05 +0000 |
| commit | 937b10f32ad95e396d7974b099078753880b9c9d (patch) | |
| tree | fff5498152392f63d0b66f57dbd0a551714ebbbb /games/adventure | |
| parent | e821040f3a2ab2a32bc19b663864dbe0b7166be9 (diff) | |
tag decl() __noinline, as inlining it would defeat its purpose
(which is to not have interesting string literals appear in the
compiled binary)
Diffstat (limited to 'games/adventure')
| -rw-r--r-- | games/adventure/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/adventure/init.c b/games/adventure/init.c index bb316c515fe..c39b34f402d 100644 --- a/games/adventure/init.c +++ b/games/adventure/init.c @@ -1,4 +1,4 @@ -/* $NetBSD: init.c,v 1.20 2011/08/31 16:24:55 plunky Exp $ */ +/* $NetBSD: init.c,v 1.21 2014/03/22 20:07:05 dholland Exp $ */ /*- * Copyright (c) 1993 @@ -39,7 +39,7 @@ #if 0 static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93"; #else -__RCSID("$NetBSD: init.c,v 1.20 2011/08/31 16:24:55 plunky Exp $"); +__RCSID("$NetBSD: init.c,v 1.21 2014/03/22 20:07:05 dholland Exp $"); #endif #endif /* not lint */ @@ -137,7 +137,7 @@ init(void) poof(); } -char * +__noinline char * decr(int a, int b, int c, int d, int e) { static char buf[6]; |
