aboutsummaryrefslogtreecommitdiffstats
path: root/guts/dup.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/dup.c')
-rw-r--r--guts/dup.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/guts/dup.c b/guts/dup.c
deleted file mode 100644
index 13612b1..0000000
--- a/guts/dup.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright (c) 2008-2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_dup(int fd) {
- * int rc = -1;
- */
- int save_errno;
-
- rc = real_dup(fd);
- save_errno = errno;
- pseudo_debug(2, "dup: %d->%d\n", fd, rc);
- pseudo_client_op(OP_DUP, 0, fd, rc, 0, 0);
-
- errno = save_errno;
-/* return rc;
- * }
- */