summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/dup.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/dup.c')
-rw-r--r--cpukit/libcsupport/src/dup.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/cpukit/libcsupport/src/dup.c b/cpukit/libcsupport/src/dup.c
deleted file mode 100644
index 902c70756a..0000000000
--- a/cpukit/libcsupport/src/dup.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * dup() - POSIX 1003.1b 6.2.1 Duplicate an Open File Descriptor
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#include <unistd.h>
-#include <fcntl.h>
-
-int dup(
- int fildes
-)
-{
- return fcntl( fildes, F_DUPFD, 0 );
-}