diff options
author | Matthew Green <mrg@redhat.com> | 2002-02-03 12:53:04 +0000 |
---|---|---|
committer | Matthew Green <mrg@redhat.com> | 2002-02-03 12:53:04 +0000 |
commit | a4139c1259e1c5e307e62bcd347580ee1e029d96 (patch) | |
tree | 9379a0fd55a6590baf45a329560a7c8785d43cd3 /newlib/libc | |
parent | 8195aff714f2ea5d680a5129a1d54af388e90355 (diff) | |
download | cygnal-a4139c1259e1c5e307e62bcd347580ee1e029d96.tar.gz cygnal-a4139c1259e1c5e307e62bcd347580ee1e029d96.tar.bz2 cygnal-a4139c1259e1c5e307e62bcd347580ee1e029d96.zip |
* libc/reent/signgam.c (__signgam): Fix error in previous.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/reent/signgam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/reent/signgam.c b/newlib/libc/reent/signgam.c index d3c17c9e5..41d955d3a 100644 --- a/newlib/libc/reent/signgam.c +++ b/newlib/libc/reent/signgam.c @@ -10,7 +10,7 @@ int * __signgam () { - return _REENT_SIGNGAM(_REENT); + return &_REENT_SIGNGAM(_REENT); } #endif |