Issue #16745: Hide symbols in _decimal.so.

This commit is contained in:
Stefan Krah 2012-12-22 14:18:35 +01:00
parent fb7f580e81
commit fdf1a34ba1
12 changed files with 95 additions and 1 deletions

View file

@ -33,11 +33,18 @@
#include "mpdecimal.h"
#include <stdio.h>
#define SIX_STEP_THRESHOLD 4096
/* Internal header file: all symbols have local scope in the DSO */
MPD_PRAGMA(MPD_HIDE_SYMBOLS_START)
#define SIX_STEP_THRESHOLD 4096
int fnt_convolute(mpd_uint_t *c1, mpd_uint_t *c2, mpd_size_t n, int modnum);
int fnt_autoconvolute(mpd_uint_t *c1, mpd_size_t n, int modnum);
MPD_PRAGMA(MPD_HIDE_SYMBOLS_END) /* restore previous scope rules */
#endif