source: rtems/cpukit/libcsupport/src/vprintk.c @ d999f865

Last change on this file since d999f865 was d999f865, checked in by Sebastian Huber <sebastian.huber@…>, on 07/29/21 at 12:48:40

rtems: Generate <rtems/bspIo.h>

Change license to BSD-2-Clause according to file histories and
documentation re-licensing agreement.

Place the group into the I/O Manager group. Add all source files to the
group.

Update #3899.
Update #3993.
Update #4482.

  • Property mode set to 100644
File size: 672 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSAPIKernelCharIO
5 *
6 * @brief This source file contains the implementation of vprintk().
7 */
8
9/*
10 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#include <rtems/bspIo.h>
28#include <rtems/score/io.h>
29
30int vprintk( const char *fmt, va_list ap )
31{
32  return _IO_Vprintf( rtems_put_char, NULL, fmt, ap );
33}
Note: See TracBrowser for help on using the repository browser.