summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-05-30 03:06:59 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-05-30 03:06:59 +0000
commit07f6786e17050d35830f1392086c1cd7b631fb06 (patch)
tree49ec5d13eee671495b5dab2d73dcddf0e57c595b /lib/libc/stdlib
parentef96bb97c0cdd35f309d642816a20efb8143aa88 (diff)
The icdb magic number doesn't need to be visible to static links
ok tedu@
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/icdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/icdb.c b/lib/libc/stdlib/icdb.c
index 7a6f3df1bbf..5bf549ecb33 100644
--- a/lib/libc/stdlib/icdb.c
+++ b/lib/libc/stdlib/icdb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: icdb.c,v 1.5 2015/12/27 01:26:47 chl Exp $ */
+/* $OpenBSD: icdb.c,v 1.6 2016/05/30 03:06:58 guenther Exp $ */
/*
* Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
*
@@ -100,7 +100,7 @@ struct icdb {
int fd;
};
-const uint32_t magic = 0x1ca9d0b7;
+static const uint32_t magic = 0x1ca9d0b7;
static uint32_t
roundup(uint32_t num)