forked from Imagelibrary/rtems
2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/no_libc.c: Remove. * libcsupport/Makefile.am: Remove no_libc.c.
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* libcsupport/src/no_libc.c: Remove.
|
||||||
|
* libcsupport/Makefile.am: Remove no_libc.c.
|
||||||
* libcsupport/src/newlibc_reent.c: Eliminate RTEMS_UNIX.
|
* libcsupport/src/newlibc_reent.c: Eliminate RTEMS_UNIX.
|
||||||
* libcsupport/src/newlibc_exit.c: Eliminate RTEMS_UNIX.
|
* libcsupport/src/newlibc_exit.c: Eliminate RTEMS_UNIX.
|
||||||
* libcsupport/src/base_fs.c: Eliminate RTEMS_UNIX.
|
* libcsupport/src/base_fs.c: Eliminate RTEMS_UNIX.
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ TERMINAL_IDENTIFICATION_C_FILES += src/ttyname.c
|
|||||||
LIBC_GLUE_C_FILES = src/__getpid.c src/__gettod.c src/__times.c \
|
LIBC_GLUE_C_FILES = src/__getpid.c src/__gettod.c src/__times.c \
|
||||||
src/truncate.c src/access.c src/stat.c src/lstat.c src/pathconf.c \
|
src/truncate.c src/access.c src/stat.c src/lstat.c src/pathconf.c \
|
||||||
src/newlibc_reent.c src/newlibc_init.c src/newlibc_exit.c src/no_posix.c \
|
src/newlibc_reent.c src/newlibc_init.c src/newlibc_exit.c src/no_posix.c \
|
||||||
src/no_libc.c src/utsname.c
|
src/utsname.c
|
||||||
|
|
||||||
BSD_LIBC_C_FILES = src/strlcpy.c src/strlcat.c src/issetugid.c
|
BSD_LIBC_C_FILES = src/strlcpy.c src/strlcat.c src/issetugid.c
|
||||||
|
|
||||||
|
|||||||
@@ -1,58 +0,0 @@
|
|||||||
/*
|
|
||||||
* This file contains stubs for the reentrancy hooks when
|
|
||||||
* an unknown C library is used.
|
|
||||||
*
|
|
||||||
* 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.rtems.com/license/LICENSE.
|
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if HAVE_CONFIG_H
|
|
||||||
#include "config.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <rtems.h>
|
|
||||||
#if !defined(RTEMS_NEWLIB) && !defined(RTEMS_UNIX)
|
|
||||||
|
|
||||||
#include <rtems/libcsupport.h>
|
|
||||||
|
|
||||||
#include <stdlib.h> /* for free() */
|
|
||||||
|
|
||||||
void libc_init(void)
|
|
||||||
)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void libc_suspend_main(void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void libc_global_exit(
|
|
||||||
uint32_t code
|
|
||||||
)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void _exit(
|
|
||||||
int status
|
|
||||||
)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
/* remove ANSI errors.
|
|
||||||
* A program must contain at least one external-declaration
|
|
||||||
* (X3.159-1989 p.82,L3).
|
|
||||||
*/
|
|
||||||
void no_libc_dummy_function( void )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
Reference in New Issue
Block a user