diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-28 19:08:43 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-28 19:08:43 +0000 |
commit | a593bb6512a5812128948bf88b3a3eafdf34d518 (patch) | |
tree | 158f311db2e3fc60211c49300b44ec0e385ab1f0 /libio/libio.h | |
parent | 92da7f111f0ba391a8bb0741feb7bf01abb3412c (diff) | |
download | gcc-a593bb6512a5812128948bf88b3a3eafdf34d518.tar.gz |
* libio.h: Don't use _IO_LOCK_T if it's not defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15773 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/libio.h')
-rw-r--r-- | libio/libio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libio/libio.h b/libio/libio.h index d5e20f53bbe..3d7bce3c181 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -226,7 +226,9 @@ struct _IO_FILE { /* char* _save_gptr; char* _save_egptr; */ +#ifdef _IO_LOCK_T _IO_LOCK_T _lock; +#endif }; #ifndef __cplusplus |