Make cleanup_glue() static
Remove cleanup_glue from the list of symbols exported by Cygwin.
This commit is contained in:
parent
0a862d1319
commit
01c823efb7
|
@ -30,7 +30,7 @@ int errno;
|
||||||
#ifndef _REENT_GLOBAL_STDIO_STREAMS
|
#ifndef _REENT_GLOBAL_STDIO_STREAMS
|
||||||
/* Interim cleanup code */
|
/* Interim cleanup code */
|
||||||
|
|
||||||
void
|
static void
|
||||||
cleanup_glue (struct _reent *ptr,
|
cleanup_glue (struct _reent *ptr,
|
||||||
struct _glue *glue)
|
struct _glue *glue)
|
||||||
{
|
{
|
||||||
|
|
|
@ -316,7 +316,6 @@ chroot SIGFE
|
||||||
cimag NOSIGFE
|
cimag NOSIGFE
|
||||||
cimagf NOSIGFE
|
cimagf NOSIGFE
|
||||||
cimagl NOSIGFE
|
cimagl NOSIGFE
|
||||||
cleanup_glue NOSIGFE
|
|
||||||
clearenv SIGFE
|
clearenv SIGFE
|
||||||
clearerr SIGFE
|
clearerr SIGFE
|
||||||
clearerr_unlocked SIGFE
|
clearerr_unlocked SIGFE
|
||||||
|
|
|
@ -516,12 +516,13 @@ details. */
|
||||||
341: Export pthread_cond_clockwait, pthread_mutex_clocklock,
|
341: Export pthread_cond_clockwait, pthread_mutex_clocklock,
|
||||||
pthread_rwlock_clockrdlock, pthread_rwlock_clockwrlock,
|
pthread_rwlock_clockrdlock, pthread_rwlock_clockwrlock,
|
||||||
sem_clockwait, sig2str, str2sig.
|
sem_clockwait, sig2str, str2sig.
|
||||||
|
342: Remove cleanup_glue.
|
||||||
|
|
||||||
Note that we forgot to bump the api for ualarm, strtoll, strtoull,
|
Note that we forgot to bump the api for ualarm, strtoll, strtoull,
|
||||||
sigaltstack, sethostname. */
|
sigaltstack, sethostname. */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_API_MAJOR 0
|
#define CYGWIN_VERSION_API_MAJOR 0
|
||||||
#define CYGWIN_VERSION_API_MINOR 341
|
#define CYGWIN_VERSION_API_MINOR 342
|
||||||
|
|
||||||
/* There is also a compatibity version number associated with the shared memory
|
/* There is also a compatibity version number associated with the shared memory
|
||||||
regions. It is incremented when incompatible changes are made to the shared
|
regions. It is incremented when incompatible changes are made to the shared
|
||||||
|
|
Loading…
Reference in New Issue