Retro68/gcc/newlib/libc/reent/signgam.c

17 lines
285 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* The signgam variable is stored in the reentrancy structure. This
function returns its address for use by the macro signgam defined in
math.h. */
#include <math.h>
#include <reent.h>
#ifndef _REENT_ONLY
int *
2018-12-28 15:30:48 +00:00
__signgam (void)
2017-04-11 21:13:36 +00:00
{
return &_REENT_SIGNGAM(_REENT);
}
#endif