source: rtems/c/src/lib/libc/ctermid.c @ edeed26

4.104.114.84.95
Last change on this file since edeed26 was c629812, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/99 at 22:10:45

Removed warnings.

  • Property mode set to 100644
File size: 566 bytes
Line 
1/*
2 *  ctermid() - POSIX 1003.1b 4.7.1 - Generate Terminal Pathname
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#include <rtems.h>
15#if defined(RTEMS_NEWLIB)
16
17#include <stdio.h>
18
19static char *ctermid_name = "/dev/console";
20
21char *ctermid(
22  char *s
23)
24{
25  if ( !s )
26    return ctermid_name;
27
28  strcpy( s, ctermid_name );
29  return s;
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.