summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/avr/ffconf.h2
-rw-r--r--include/cli.h2
-rw-r--r--include/cli_readline.h2
-rw-r--r--include/command.h6
4 files changed, 5 insertions, 7 deletions
diff --git a/include/avr/ffconf.h b/include/avr/ffconf.h
index fadbe3d..da0052b 100644
--- a/include/avr/ffconf.h
+++ b/include/avr/ffconf.h
@@ -33,7 +33,7 @@
/ 3: f_lseek() function is removed in addition to 2. */
-#define _USE_STRFUNC 0
+#define _USE_STRFUNC 2
/* This option switches string functions, f_gets(), f_putc(), f_puts() and
/ f_printf().
/
diff --git a/include/cli.h b/include/cli.h
index 20e852f..28e92be 100644
--- a/include/cli.h
+++ b/include/cli.h
@@ -1,5 +1,5 @@
/*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014-2016 Leo C. <erbl259-lmu@yahoo.de>
*
* (C) Copyright 2014 Google, Inc
* Simon Glass <sjg@chromium.org>
diff --git a/include/cli_readline.h b/include/cli_readline.h
index 0e165cc..0ce28a5 100644
--- a/include/cli_readline.h
+++ b/include/cli_readline.h
@@ -1,5 +1,5 @@
/*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014-2016 Leo C. <erbl259-lmu@yahoo.de>
*
* (C) Copyright 2014 Google, Inc
* Simon Glass <sjg@chromium.org>
diff --git a/include/command.h b/include/command.h
index 5582fa5..db469e3 100644
--- a/include/command.h
+++ b/include/command.h
@@ -1,10 +1,10 @@
/*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014-2016 Leo C. <erbl259-lmu@yahoo.de>
*
* (C) Copyright 2000-2009
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
- * SPDX-License-Identifier: GPL-2.0+
+ * SPDX-License-Identifier: GPL-2.0
*/
/*
@@ -61,8 +61,6 @@ struct cmd_tbl_s {
typedef const FLASH struct cmd_tbl_s cmd_tbl_t;
-extern command_ret_t do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
-
/**
* Process a command with arguments. We look up the command and execute it
* if valid. Otherwise we print a usage message.