diff options
author | guenther <> | 2016-05-30 03:06:58 +0000 |
---|---|---|
committer | guenther <> | 2016-05-30 03:06:58 +0000 |
commit | 06b5312e6a3b5c470b0de3f0d4b272ded331ca5b (patch) | |
tree | 6f7455e542bc713b3eebcb5937fe421f36bab87d /src/lib | |
parent | 3b027489eb0e5a417e1aaba2951a27fcea37cfcb (diff) | |
download | openbsd-06b5312e6a3b5c470b0de3f0d4b272ded331ca5b.tar.gz openbsd-06b5312e6a3b5c470b0de3f0d4b272ded331ca5b.tar.bz2 openbsd-06b5312e6a3b5c470b0de3f0d4b272ded331ca5b.zip |
The icdb magic number doesn't need to be visible to static links
ok tedu@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/stdlib/icdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/icdb.c b/src/lib/libc/stdlib/icdb.c index 7a6f3df1bb..5bf549ecb3 100644 --- a/src/lib/libc/stdlib/icdb.c +++ b/src/lib/libc/stdlib/icdb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: icdb.c,v 1.5 2015/12/27 01:26:47 chl Exp $ */ | 1 | /* $OpenBSD: icdb.c,v 1.6 2016/05/30 03:06:58 guenther Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> | 3 | * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> |
4 | * | 4 | * |
@@ -100,7 +100,7 @@ struct icdb { | |||
100 | int fd; | 100 | int fd; |
101 | }; | 101 | }; |
102 | 102 | ||
103 | const uint32_t magic = 0x1ca9d0b7; | 103 | static const uint32_t magic = 0x1ca9d0b7; |
104 | 104 | ||
105 | static uint32_t | 105 | static uint32_t |
106 | roundup(uint32_t num) | 106 | roundup(uint32_t num) |