Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getreent.c « reent « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60ae6fbb7122abb891869e0320cabcade627cc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* default reentrant pointer when multithread enabled */

#include <_ansi.h>
#include <reent.h>

#ifdef __getreent
#undef __getreent
#endif

struct _reent *
_DEFUN_VOID(__getreent)
{
  return _impure_ptr;
}