⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 no_libc.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  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: no_libc.c,v 1.13.4.1 2003/09/04 18:46:58 joel Exp $ */#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(  int reentrant){}void libc_suspend_main(void){}void libc_global_exit(  rtems_unsigned32 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -