summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getreentglobal.c
blob: c64f09ac2c1286232492e07be61fdec518de184f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * 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>

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