1234567891011121314151617181920212223242526272829303132 |
- #include <errno.h>
- #include <pthread.h>
- #include <stdio.h>
- #include <bits/stdio-lock.h>
- int
- __ftrylockfile (stream)
- FILE *stream;
- {
- return _IO_lock_trylock (*stream->_lock);
- }
- strong_alias (__ftrylockfile, _IO_ftrylockfile)
- weak_alias (__ftrylockfile, ftrylockfile)
|