summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/getreentglobal.c
blob: 72b513ee810bce3e2f4163b76c6394c92a7cdd10 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                                 




                                                          
                    


                   

                  







                               
/*
 * Copyright (c) 2018 embedded brains GmbH.  All rights reserved.
 *
 * 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.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems.h>

#if defined(RTEMS_NEWLIB)
#include <sys/reent.h>

struct _reent *__getreent(void)
{
  return _GLOBAL_REENT;
}
#endif