mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
fff27f8429
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
17 lines
285 B
C
17 lines
285 B
C
/* 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 *
|
|
__signgam (void)
|
|
{
|
|
return &_REENT_SIGNGAM(_REENT);
|
|
}
|
|
|
|
#endif
|