00001 #ifndef MODULE_ALIASES_H 00002 #define MODULE_ALIASES_H 00003 00004 /* Modules that declare multiple names for themselves but use the 00005 * same entry functions are aliases. This array helps to determine if 00006 * a module is an alias, as such it can be invoked differently. 00007 * format is alias , real_name */ 00008 00009 /* So far, this is only used in the help display but could be used to 00010 * handle a module differently even prior to reaching its entry code. 00011 * For instance, 'exit' could behave differently than 'quit', prior to 00012 * the entry point being reached. */ 00013 00014 const char *mod_aliases[] = { 00015 "ren", "mv", 00016 "umount", "unmount", 00017 NULL, NULL 00018 }; 00019 00020 #endif