diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-07-30 16:09:11 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-07-30 16:34:33 -0700 |
commit | bea9b19322c77265033a068ac60c95a37e798a80 (patch) | |
tree | d3fad60d4780a5d86fe5dbedd994c3cd7625890b /libio | |
parent | fc56c5bbc1a0d56b9b49171dd377c73c268ebcfd (diff) | |
download | glibc-bea9b19322c77265033a068ac60c95a37e798a80.tar glibc-bea9b19322c77265033a068ac60c95a37e798a80.tar.gz glibc-bea9b19322c77265033a068ac60c95a37e798a80.tar.bz2 glibc-bea9b19322c77265033a068ac60c95a37e798a80.zip |
Fix lots of bitrot for stub configurations.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/genops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/genops.c b/libio/genops.c index b7dd863626..c8297ff128 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -45,15 +45,15 @@ static int _IO_list_all_stamp; static _IO_FILE *run_fp; +#ifdef _IO_MTSAFE_IO static void flush_cleanup (void *not_used) { if (run_fp != NULL) _IO_funlockfile (run_fp); -#ifdef _IO_MTSAFE_IO _IO_lock_unlock (list_all_lock); -#endif } +#endif void _IO_un_link (fp) |