diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-09 22:03:39 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-09 22:03:39 +0000 |
commit | 1150f3aaeaecd091ed7c650b0797e9f3f9f577c7 (patch) | |
tree | 00dc7e80ffc71def676e1b0ec1ccd02b9e70cb8f /loader | |
parent | 709bdcf7c108ac74dd0e8e3e029136780eb04c4b (diff) | |
download | anaconda-1150f3aaeaecd091ed7c650b0797e9f3f9f577c7.tar.gz anaconda-1150f3aaeaecd091ed7c650b0797e9f3f9f577c7.tar.xz anaconda-1150f3aaeaecd091ed7c650b0797e9f3f9f577c7.zip |
support module arguments
Diffstat (limited to 'loader')
-rw-r--r-- | loader/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/modules.h b/loader/modules.h index 3959b14e0..869c1fc36 100644 --- a/loader/modules.h +++ b/loader/modules.h @@ -9,7 +9,7 @@ void mlFreeList(moduleList list); int mlLoadDeps(moduleDeps * moduleDepList, const char * path); moduleDeps mlNewDeps(void); int mlLoadModule(char * modName, moduleList modLoaded, - moduleDeps modDeps, int testing); + moduleDeps modDeps, char ** args, int testing); char ** mlGetDeps(moduleDeps modDeps, const char * modName); int mlModuleInList(const char * modName, moduleList list); int mlWriteConfModules(moduleList list, moduleInfoSet modInfo, int fd); |