Add FAR to a couple of functions. The Z16F cares about such things
This commit is contained in:
parent
c49b0b09d9
commit
53ce920eae
2
TODO
2
TODO
@ -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
|
This file summarizes known NuttX bugs, limitations, inconsistencies with
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
#if defined(CONFIG_ARCH_LOWPUTC) || defined(CONFIG_SYSLOG)
|
#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;
|
struct lib_outstream_s stream;
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ int lowvsyslog(const char *fmt, va_list ap)
|
|||||||
* Name: lowsyslog
|
* Name: lowsyslog
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int lowsyslog(const char *fmt, ...)
|
int lowsyslog(FAR const char *fmt, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -86,7 +86,7 @@
|
|||||||
* Name: printf
|
* Name: printf
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
||||||
int printf(const char *fmt, ...)
|
int printf(FAR const char *fmt, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -91,7 +91,7 @@
|
|||||||
* Name: vsyslog
|
* Name: vsyslog
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int vsyslog(const char *fmt, va_list ap)
|
int vsyslog(FAR const char *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_SYSLOG)
|
#if defined(CONFIG_SYSLOG)
|
||||||
|
|
||||||
@ -135,7 +135,7 @@ int vsyslog(const char *fmt, va_list ap)
|
|||||||
* Name: syslog
|
* Name: syslog
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int syslog(const char *fmt, ...)
|
int syslog(FAR const char *fmt, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -119,5 +119,3 @@ void lib_syslogstream(FAR struct lib_outstream_s *stream)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_SYSLOG */
|
#endif /* CONFIG_SYSLOG */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user