Changeset 5c370a5d in rtems


Ignore:
Timestamp:
06/21/16 11:05:50 (7 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
e8020d1
Parents:
1ce8fc3
git-author:
Sebastian Huber <sebastian.huber@…> (06/21/16 11:05:50)
git-committer:
Sebastian Huber <sebastian.huber@…> (06/22/16 05:29:26)
Message:

Make rtems_fprintf_plugin() static

Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/include/rtems/bspIo.h

    r1ce8fc3 r5c370a5d  
    142142typedef int (*rtems_print_plugin_t)(void *, const char *format, va_list ap);
    143143
    144 /**
    145  * @brief Reporting Methods fprintf() Plugin
    146  *
    147  * This is a standard plug-in to support using fprintf() for output
    148  * instead of printk().
    149  *
    150  * @param[in] context The file stream.
    151  * @param[in] fmt is a printf()-style format string
    152  *
    153  * @return The number of characters printed.
    154  */
    155 extern int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap);
    156 
    157144/**@}*/
    158145
  • cpukit/libcsupport/src/print_fprintf.c

    r1ce8fc3 r5c370a5d  
    2323#include <stdio.h>
    2424
    25 int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap)
     25static int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap)
    2626{
    2727  return vfprintf(context, fmt, ap);
Note: See TracChangeset for help on using the changeset viewer.