Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:15

0001 /*
0002  * Copyright (c) 2018 embedded brains GmbH & Co. KG
0003  *
0004  * The license and distribution terms for this file may be
0005  * found in the file LICENSE in this distribution or at
0006  * http://www.rtems.com/license/LICENSE.
0007  */
0008 
0009 #ifdef HAVE_CONFIG_H
0010 #include "config.h"
0011 #endif
0012 
0013 #include <rtems.h>
0014 
0015 #if defined(RTEMS_NEWLIB)
0016 #include <sys/reent.h>
0017 
0018 #ifndef _REENT_THREAD_LOCAL
0019 struct _reent *__getreent(void)
0020 {
0021   return _GLOBAL_REENT;
0022 }
0023 #endif
0024 #endif