Add FAR to a couple of functions. The Z16F cares about such things

This commit is contained in:
Gregory Nutt 2014-01-02 12:36:20 -06:00
parent c49b0b09d9
commit 53ce920eae
5 changed files with 6 additions and 8 deletions

2
TODO
View File

@ -1,4 +1,4 @@
NuttX TODO List (Last updated December 29, 2013)
NuttX TODO List (Last updated January 2, 2014)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This file summarizes known NuttX bugs, limitations, inconsistencies with

View File

@ -90,7 +90,7 @@
#if defined(CONFIG_ARCH_LOWPUTC) || defined(CONFIG_SYSLOG)
int lowvsyslog(const char *fmt, va_list ap)
int lowvsyslog(FAR const char *fmt, va_list ap)
{
struct lib_outstream_s stream;
@ -108,7 +108,7 @@ int lowvsyslog(const char *fmt, va_list ap)
* Name: lowsyslog
****************************************************************************/
int lowsyslog(const char *fmt, ...)
int lowsyslog(FAR const char *fmt, ...)
{
va_list ap;
int ret;

View File

@ -86,7 +86,7 @@
* Name: printf
**************************************************************************/
int printf(const char *fmt, ...)
int printf(FAR const char *fmt, ...)
{
va_list ap;
int ret;

View File

@ -91,7 +91,7 @@
* Name: vsyslog
****************************************************************************/
int vsyslog(const char *fmt, va_list ap)
int vsyslog(FAR const char *fmt, va_list ap)
{
#if defined(CONFIG_SYSLOG)
@ -135,7 +135,7 @@ int vsyslog(const char *fmt, va_list ap)
* Name: syslog
****************************************************************************/
int syslog(const char *fmt, ...)
int syslog(FAR const char *fmt, ...)
{
va_list ap;
int ret;

View File

@ -119,5 +119,3 @@ void lib_syslogstream(FAR struct lib_outstream_s *stream)
}
#endif /* CONFIG_SYSLOG */