1234567891011121314151617181920212223242526272829303132 |
- #include <pthread.h>
- #include <stdio.h>
- #include <libio.h>
- #include <bits/stdio-lock.h>
- void
- __funlockfile (stream)
- FILE *stream;
- {
- _IO_lock_unlock (*stream->_lock);
- }
- strong_alias (__funlockfile, _IO_funlockfile)
- weak_alias (__funlockfile, funlockfile)
|