diff options
Diffstat (limited to 'sysdeps/nptl/stdio-lock.h')
-rw-r--r-- | sysdeps/nptl/stdio-lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/nptl/stdio-lock.h b/sysdeps/nptl/stdio-lock.h index 518b906327..5b9782452f 100644 --- a/sysdeps/nptl/stdio-lock.h +++ b/sysdeps/nptl/stdio-lock.h @@ -90,13 +90,13 @@ typedef struct { int lock; int cnt; void *owner; } _IO_lock_t; # ifdef __EXCEPTIONS # define _IO_acquire_lock(_fp) \ do { \ - _IO_FILE *_IO_acquire_lock_file \ + FILE *_IO_acquire_lock_file \ __attribute__((cleanup (_IO_acquire_lock_fct))) \ = (_fp); \ _IO_flockfile (_IO_acquire_lock_file); # define _IO_acquire_lock_clear_flags2(_fp) \ do { \ - _IO_FILE *_IO_acquire_lock_file \ + FILE *_IO_acquire_lock_file \ __attribute__((cleanup (_IO_acquire_lock_clear_flags2_fct))) \ = (_fp); \ _IO_flockfile (_IO_acquire_lock_file); |