diff options
author | Matt Wilson <msw@redhat.com> | 2001-08-07 21:11:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-08-07 21:11:54 +0000 |
commit | 89e24320bc61dfc73e510cd755830a42a88e4f94 (patch) | |
tree | 26d41ff8d80741dbcf136ce36fe603d6c48ae618 /loader | |
parent | 140a61993d34e60de81d2117df459bfea91e225b (diff) | |
download | anaconda-89e24320bc61dfc73e510cd755830a42a88e4f94.tar.gz anaconda-89e24320bc61dfc73e510cd755830a42a88e4f94.tar.xz anaconda-89e24320bc61dfc73e510cd755830a42a88e4f94.zip |
add more gconv stubs to prevent pulling in glibc gconv because of new symbol usage
Diffstat (limited to 'loader')
-rw-r--r-- | loader/stubs.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/loader/stubs.c b/loader/stubs.c index c4791a38c..5ce4b7b85 100644 --- a/loader/stubs.c +++ b/loader/stubs.c @@ -76,6 +76,17 @@ __gconv_lookup_alias (const char *name) return NULL; } +int +__gconv_compare_alias (const char *name1, const char *name2) { + return 0; +} + +void +__gconv_release_step () { } + +void +__gconv_release_cache () { } + int RETURNZERO() { return 0; } int getlogin_r ( char * name, int size ) { |