source: rtems/cpukit/libcsupport/src/putk.c @ 18daff9

4.104.115
Last change on this file since 18daff9 was 18daff9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 13:35:32

Whitespace removal.

  • Property mode set to 100644
File size: 546 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2007.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/bspIo.h>
17
18/*
19 * putk
20 *
21 * Kernel putk (e.g. puts) function requiring minimal infrastrure.
22 */
23void putk(const char *s)
24{
25  const char *p = s;
26
27  for (p=s ; *p ; p++ )
28    BSP_output_char(*p);
29  BSP_output_char('\n');
30}
Note: See TracBrowser for help on using the repository browser.