URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libc/] [unixlibc.c] - Rev 467
Go to most recent revision | Compare with Previous | Blame | View Log
/* * $Id: unixlibc.c,v 1.2 2001-09-27 12:01:15 chris Exp $ * UNIX Port C Library Support * * 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. * */ #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
Go to most recent revision | Compare with Previous | Blame | View Log