diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-17 20:04:57 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-17 20:04:57 +0000 |
commit | aa50d1d92bf5ebbaef8675a278c517ed4887f52a (patch) | |
tree | 75a2becdf08a36eaf89ea190202d365a79b12bd7 /libexec | |
parent | 0c5466138a26163ec875ecf449ccc189c32ea673 (diff) |
Add missing 'extern's to avoid introducing commons into *crt0.o
ok miod@ kettenis@
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/resolve.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/ld.so/resolve.h b/libexec/ld.so/resolve.h index 77f8c2e6c5a..344b142cbd3 100644 --- a/libexec/ld.so/resolve.h +++ b/libexec/ld.so/resolve.h @@ -1,4 +1,4 @@ -/* $OpenBSD: resolve.h,v 1.71 2015/01/22 05:48:17 deraadt Exp $ */ +/* $OpenBSD: resolve.h,v 1.72 2015/08/17 20:04:56 guenther Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -302,8 +302,8 @@ TAILQ_HEAD(dlochld, dep_node); extern struct dlochld _dlopened_child_list; /* variables used to avoid duplicate node checking */ -int _dl_searchnum; -uint32_t _dl_skipnum; +extern int _dl_searchnum; +extern uint32_t _dl_skipnum; void _dl_newsymsearch(void); #endif /* _RESOLVE_H_ */ |