diff options
author | Erik Troan <ewt@redhat.com> | 2001-02-28 22:34:35 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-02-28 22:34:35 +0000 |
commit | 2594e3593e1fcde35e9a631c605c33ebc02a17aa (patch) | |
tree | 516ffbfd2c8f5de0b20fcf5a1afb83b45b178e50 /loader | |
parent | a04c809ebbfbf1ead01d9d1a838b7d7e901b747a (diff) | |
download | anaconda-2594e3593e1fcde35e9a631c605c33ebc02a17aa.tar.gz anaconda-2594e3593e1fcde35e9a631c605c33ebc02a17aa.tar.xz anaconda-2594e3593e1fcde35e9a631c605c33ebc02a17aa.zip |
added black magic
Diffstat (limited to 'loader')
-rw-r--r-- | loader/stubs.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/loader/stubs.c b/loader/stubs.c index a716548ce..1bf59d1cd 100644 --- a/loader/stubs.c +++ b/loader/stubs.c @@ -68,3 +68,28 @@ strong_alias (__gconv_NOCONV, strong_alias (__gconv_OK, __gconv_transliterate); + +int RETURNZERO() { return 0; } + +int getlogin_r ( char * name, int size ) { + strdup(name, "root"); +} + +int __get_nprocs_conf() { return 1024; } +int __get_nprocs() { return 1; } +int __get_phys_pages() { return 4096; } +int __get_avphys_pages() { return 4096; } +int __getdtablesize() { return 100; } +int _nl_current_LC_TELEPHONE() { return 0; } +int _nl_current_LC_MEASUREMENT() { return 0; } +int _nl_current_LC_PAPER() { return 0; } +int _nl_current_LC_ADDRESS() { return 0; } +int __mpn_extract_long_double() { return 0; } +int __mpn_extract_double() { return 0; } +int __getgroups() { return -1; } +int _nl_C_LC_TELEPHONE() { return 0; } +int _nl_C_LC_MEASUREMENT() { return 0; } +int _nl_C_LC_PAPER() { return 0; } +int _nl_C_LC_ADDRESS() { return 0; } + + |