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

getreent.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d842073aab3fb1b858189371989e3fbbc5c4186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* default function used by _REENT when not using multithreading */

#include <reent.h>
#include <machine/weakalias.h>

struct _reent *
__libc_getreent (void)
{
  return _impure_ptr;
}
weak_alias(__libc_getreent,__getreent)