summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/ctermid.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/exec/libcsupport/src/ctermid.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/c/src/exec/libcsupport/src/ctermid.c b/c/src/exec/libcsupport/src/ctermid.c
deleted file mode 100644
index 6869acb291..0000000000
--- a/c/src/exec/libcsupport/src/ctermid.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * ctermid() - POSIX 1003.1b 4.7.1 - Generate Terminal Pathname
- *
- * 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$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems.h>
-#if defined(RTEMS_NEWLIB)
-
-#include <stdio.h>
-#include <string.h>
-
-static char *ctermid_name = "/dev/console";
-
-char *ctermid(
- char *s
-)
-{
- if ( !s )
- return ctermid_name;
-
- strcpy( s, ctermid_name );
- return s;
-}
-
-#endif