diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-09 02:56:18 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-09 02:56:18 +0000 |
commit | f82ac3f62fb6e0f8664e6de54ec011f63020da24 (patch) | |
tree | 7d9b32c46e188ff5e57ae03049b29ca2de5d8258 /loader/stubs.c | |
parent | e78ef789f270f8eefbd51ba4344056e61ad5f14d (diff) | |
download | anaconda-f82ac3f62fb6e0f8664e6de54ec011f63020da24.tar.gz anaconda-f82ac3f62fb6e0f8664e6de54ec011f63020da24.tar.xz anaconda-f82ac3f62fb6e0f8664e6de54ec011f63020da24.zip |
fixed stubs
Diffstat (limited to 'loader/stubs.c')
-rw-r--r-- | loader/stubs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/loader/stubs.c b/loader/stubs.c index e9c7d7cd4..0a7ebc0a6 100644 --- a/loader/stubs.c +++ b/loader/stubs.c @@ -1,3 +1,4 @@ +#include <gconv.h> #define ASM_GLOBAL_DIRECTIVE .globl #define __SYMBOL_PREFIX @@ -15,10 +16,10 @@ void *__libc_stack_end; int -__gconv_OK () {return 0;} +__gconv_OK () {return GCONV_OK;} int -__gconv_NOCONV () {return -1;} +__gconv_NOCONV () {return GCONV_OK;} strong_alias (__gconv_OK, __gconv_close_transform); strong_alias (__gconv_NOCONV, __gconv); |