summaryrefslogtreecommitdiffstats
path: root/common/complete.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/complete.c')
-rw-r--r--common/complete.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/complete.c b/common/complete.c
index a8bde8d7a1..6a871ef218 100644
--- a/common/complete.c
+++ b/common/complete.c
@@ -149,6 +149,7 @@ int command_complete(struct string_list *sl, char *instr)
return 0;
}
+EXPORT_SYMBOL(command_complete);
int device_complete(struct string_list *sl, char *instr)
{
@@ -169,6 +170,7 @@ int device_complete(struct string_list *sl, char *instr)
return COMPLETE_CONTINUE;
}
+EXPORT_SYMBOL(device_complete);
static int device_param_complete(char *begin, struct device_d *dev,
struct string_list *sl, char *instr)
@@ -197,11 +199,13 @@ int empty_complete(struct string_list *sl, char *instr)
{
return COMPLETE_END;
}
+EXPORT_SYMBOL(empty_complete);
int command_var_complete(struct string_list *sl, char *instr)
{
return COMPLETE_CONTINUE;
}
+EXPORT_SYMBOL(command_var_complete);
static int env_param_complete(struct string_list *sl, char *instr, int eval)
{