123456789101112131415161718192021222324252627282930313233 |
- #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)
|