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: b53ff26c883d1402e8b0830387725669afa57227 (plain)
1
2
3
4
5
6
7
8
9
10
/* default reentrant pointer when multithread enabled */

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

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