summaryrefslogtreecommitdiffstats
path: root/lib/libc_r/uthread/uthread_fchflags.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc_r/uthread/uthread_fchflags.c')
-rw-r--r--lib/libc_r/uthread/uthread_fchflags.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/libc_r/uthread/uthread_fchflags.c b/lib/libc_r/uthread/uthread_fchflags.c
deleted file mode 100644
index cd076e2..0000000
--- a/lib/libc_r/uthread/uthread_fchflags.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * David Leonard <d@openbsd.org>, 1999. Public Domain.
- *
- * $OpenBSD: uthread_fchflags.c,v 1.1 1999/01/08 05:42:18 d Exp $
- * $FreeBSD$
- */
-
-#include <sys/stat.h>
-#include <unistd.h>
-#include <pthread.h>
-#include "pthread_private.h"
-
-__weak_reference(_fchflags, fchflags);
-int
-_fchflags(int fd, u_long flags)
-{
- int ret;
-
- if ((ret = _FD_LOCK(fd, FD_WRITE, NULL)) == 0) {
- ret = __sys_fchflags(fd, flags);
- _FD_UNLOCK(fd, FD_WRITE);
- }
- return (ret);
-}
OpenPOWER on IntegriCloud