summaryrefslogtreecommitdiff
path: root/include/cmd_mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cmd_mem.h')
-rw-r--r--include/cmd_mem.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/cmd_mem.h b/include/cmd_mem.h
index b019d27..4b370cc 100644
--- a/include/cmd_mem.h
+++ b/include/cmd_mem.h
@@ -1,5 +1,5 @@
/*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014,2018 Leo C. <erbl259-lmu@yahoo.de>
*
* SPDX-License-Identifier: GPL-2.0
*/
@@ -9,21 +9,21 @@
#include "command.h"
-
-extern command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
-extern command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_size(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_md(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_mm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_nm(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_mw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_cp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_cmp(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_base(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_loop(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_loopw(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#ifdef CONFIG_CMD_MEMTEST
-extern command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_mtest(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#endif
#ifdef CONFIG_MX_CYCLIC
-extern command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+command_ret_t do_mem_mdc(cmd_tbl_t *, uint_fast8_t, int, char * const []);
#endif /* CONFIG_MX_CYCLIC */
#endif /* CMD_MEM_H */