diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-12-22 13:18:35 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-12-22 13:18:35 (GMT) |
commit | fdf1a34ba113a783ed4865f810adbbbde11c8635 (patch) | |
tree | b6a93a1342c0366aa6fc95136cf547b7b1a87e59 /Modules/_decimal/libmpdec/basearith.h | |
parent | fb7f580e81ed048f374cb9d624960f695ba032ba (diff) | |
download | cpython-fdf1a34ba113a783ed4865f810adbbbde11c8635.zip cpython-fdf1a34ba113a783ed4865f810adbbbde11c8635.tar.gz cpython-fdf1a34ba113a783ed4865f810adbbbde11c8635.tar.bz2 |
Issue #16745: Hide symbols in _decimal.so.
Diffstat (limited to 'Modules/_decimal/libmpdec/basearith.h')
-rw-r--r-- | Modules/_decimal/libmpdec/basearith.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/_decimal/libmpdec/basearith.h b/Modules/_decimal/libmpdec/basearith.h index 5004b2c..114cef3 100644 --- a/Modules/_decimal/libmpdec/basearith.h +++ b/Modules/_decimal/libmpdec/basearith.h @@ -35,6 +35,10 @@ #include "typearith.h" +/* Internal header file: all symbols have local scope in the DSO */ +MPD_PRAGMA(MPD_HIDE_SYMBOLS_START) + + mpd_uint_t _mpd_baseadd(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v, mpd_size_t m, mpd_size_t n); void _mpd_baseaddto(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n); @@ -209,6 +213,9 @@ _mpd_isallnine(const mpd_uint_t *data, mpd_ssize_t len) } +MPD_PRAGMA(MPD_HIDE_SYMBOLS_END) /* restore previous scope rules */ + + #endif /* BASEARITH_H */ |