summaryrefslogtreecommitdiffstats
path: root/adventure
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-22 20:07:05 +0000
committerdholland <dholland@NetBSD.org>2014-03-22 20:07:05 +0000
commitc11c2ef7eddcb7f5b6bef57cd72487a2a4579dd1 (patch)
tree0bf3dad244c5d41fdf3858d7b94e5c66b0462cc5 /adventure
parent6043453f183665643a49a2c35f525d3fb5fba2f5 (diff)
downloadbsdgames-darwin-c11c2ef7eddcb7f5b6bef57cd72487a2a4579dd1.tar.gz
bsdgames-darwin-c11c2ef7eddcb7f5b6bef57cd72487a2a4579dd1.tar.zst
bsdgames-darwin-c11c2ef7eddcb7f5b6bef57cd72487a2a4579dd1.zip
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 'adventure')
-rw-r--r--adventure/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/adventure/init.c b/adventure/init.c
index bb316c51..c39b34f4 100644
--- a/adventure/init.c
+++ b/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];