source: trunk/libs/newlib/src/newlib/libc/reent/signgam.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 285 bytes
Line 
1/* The signgam variable is stored in the reentrancy structure.  This
2   function returns its address for use by the macro signgam defined in
3   math.h.  */
4
5#include <math.h>
6#include <reent.h>
7
8#ifndef _REENT_ONLY
9
10int *
11__signgam (void)
12{
13  return &_REENT_SIGNGAM(_REENT);
14}
15
16#endif
Note: See TracBrowser for help on using the repository browser.