summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unixlibc.c
blob: a581d9553490e9e2ca3f4d3bb6a2fa4d1de8a736 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  $Id$
 *  UNIX Port C Library Support
 *
 *  COPYRIGHT (c) 1989-1998.
 *  On-Line Applications Research Corporation (OAR).
 *  Copyright assigned to U.S. Government, 1994.
 *
 *  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.
 *
 */

#include <rtems.h>

#if defined(RTEMS_UNIXLIB)

void libc_init(int reentrant)
{
}

#else
 
/* remove ANSI errors.
 *  A program must contain at least one external-declaration
 *  (X3.159-1989 p.82,L3).
 */
void unixlibc_dummy_function( void )
{
}

#endif