/* $OpenBSD: thread_fd.c,v 1.8 2004/06/07 21:11:23 marc Exp $ */ #include #include "thread_private.h" WEAK_PROTOTYPE(_thread_fd_lock); WEAK_PROTOTYPE(_thread_fd_unlock); WEAK_ALIAS(_thread_fd_lock); WEAK_ALIAS(_thread_fd_unlock); int WEAK_NAME(_thread_fd_lock)(int fd, int lock_type, struct timespec *timeout) { return 0; } void WEAK_NAME(_thread_fd_unlock)(int fd, int lock_type) { }