summaryrefslogtreecommitdiff
path: root/libguile/posix.h
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-05-28 16:51:57 +0200
committerLudovic Courtès <ludo@gnu.org>2010-05-28 17:02:13 +0200
commit8c93b597b33a381c6d334597aae48d23e221a56e (patch)
treeb8d94cbecf98d78780c27bdd7e45f8b241857534 /libguile/posix.h
parentac7b8e8e4c1aeb88fc283eb0cfc79a50cf14177f (diff)
downloadguile-8c93b597b33a381c6d334597aae48d23e221a56e.tar.gz
Fix the visibility of a few of internal symbols.
* libguile/gc.h (scm_i_gc): Make internal. * libguile/posix.h (scm_i_locale_mutex): Likewise. * libguile/arrays.h (scm_i_tc16_array): Likewise. * libguile/numbers.c (scm_i_num_less_p): Likewise. * libguile/discouraged.h (scm_i_init_discouraged): Likewise. * libguile/continuations.c (scm_i_dummy): Made static. * libguile/gc.c (scm_i_cell_validation_already_running): Likewise. * libguile/discouraged.h (scm_i_init_discouraged): Likewise.
Diffstat (limited to 'libguile/posix.h')
-rw-r--r--libguile/posix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/posix.h b/libguile/posix.h
index 420311e5d..f7a5bb3a0 100644
--- a/libguile/posix.h
+++ b/libguile/posix.h
@@ -3,7 +3,7 @@
#ifndef SCM_POSIX_H
#define SCM_POSIX_H
-/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2003, 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -91,7 +91,7 @@ SCM_API SCM scm_sethostname (SCM name);
SCM_API SCM scm_gethostname (void);
SCM_INTERNAL void scm_init_posix (void);
-SCM_API scm_i_pthread_mutex_t scm_i_locale_mutex;
+SCM_INTERNAL scm_i_pthread_mutex_t scm_i_locale_mutex;
#endif /* SCM_POSIX_H */