1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Don't declare scm_i_locale_mutex' as SCM_INTERNAL'.

This commit is contained in:
Ludovic Courtès 2008-07-04 22:22:06 +02:00
parent a572acb2c2
commit b6137ed741
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,9 @@
2008-07-04 Ludovic Courtès <ludo@gnu.org>
* posix.h (scm_i_locale_mutex): Don't declare as `SCM_INTERNAL'
since it's needed by `libguile-i18n'. Reported by Patrick
Horgan <phorgan1@gmail.com>.
* __scm.h (SCM_INTERNAL): Add `extern' so that these symbols are
not considered as "common" by GCC 4.3. Reported by Patrick
Horgan <phorgan1@gmail.com>.

View file

@ -86,7 +86,7 @@ SCM_API SCM scm_sethostname (SCM name);
SCM_API SCM scm_gethostname (void);
SCM_INTERNAL void scm_init_posix (void);
SCM_INTERNAL scm_i_pthread_mutex_t scm_i_locale_mutex;
SCM_API scm_i_pthread_mutex_t scm_i_locale_mutex;
#endif /* SCM_POSIX_H */