source: rtems/c/src/lib/libc/syscalls.c @ 3a4ae6c

4.104.114.84.95
Last change on this file since 3a4ae6c was b06e68ef, checked in by Joel Sherrill <joel.sherrill@…>, on 08/17/95 at 19:51:51

Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@…) including the following major additions:

+ variable length messages
+ named devices
+ debug monitor
+ association tables/variables

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#if !defined(RTEMS_UNIX)
2
3/*
4 *  RTEMS Fake System Calls
5 *
6 *  This file contains "fake" versions of the system call routines
7 *  which are reference by many libc implementations.  Once a routine
8 *  has been implemented in terms of RTEMS services, it should be
9 *  taken out of this file.
10 *
11 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
12 *  On-Line Applications Research Corporation (OAR).
13 *  All rights assigned to U.S. Government, 1994.
14 *
15 *  This material may be reproduced by or for the U.S. Government pursuant
16 *  to the copyright license under the clause at DFARS 252.227-7013.  This
17 *  notice must appear in all copies of this file and its derivatives.
18 *
19 *  $Id$
20 *
21 */
22
23#include <sys/types.h>
24#include <sys/stat.h>
25
26int
27__fstat(int _fd, struct stat* _sbuf)
28{
29  return -1;
30}
31
32int
33__isatty(int _fd)
34{
35  return 1;
36}
37
38int stat( const char *path, struct stat *buf )
39{
40  /* always fail */
41  return -1;
42}
43
44int link( const char *existing, const char *new )
45{
46  /* always fail */
47  return -1;
48}
49
50int unlink( const char *path )
51{
52  /* always fail */
53  return -1;
54}
55
56#endif
Note: See TracBrowser for help on using the repository browser.