summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/vprintk.c
blob: a9bf30542e7f16e35981ed31bc35c86cc6213d3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * @file
 *
 * @ingroup RTEMSAPIKernelCharIO
 *
 * @brief This source file contains the implementation of vprintk().
 */

/*
 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/bspIo.h>
#include <rtems/score/io.h>

int vprintk( const char *fmt, va_list ap )
{
  return _IO_Vprintf( rtems_put_char, NULL, fmt, ap );
}