source: rtems/c/src/lib/libbsp/unix/posix/console/console-io.c @ 49c8f45

4.104.115
Last change on this file since 49c8f45 was a70ec6cb, checked in by Joel Sherrill <joel.sherrill@…>, on 12/12/07 at 17:08:20

2007-12-12 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, startup/bspstart.c: Links and runs again.
  • console/console-io.c: New file.
  • Property mode set to 100644
File size: 481 bytes
Line 
1/*
2 *  UNIX BSP Debug IO
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 *
8 * $Id$
9 */
10
11/*
12 *  To support printk
13 */
14
15#include <rtems/bspIo.h>
16#include <stdio.h>
17
18void POSIX_BSP_output_char(char c) { fputc( c, stderr ); }
19
20BSP_output_char_function_type           BSP_output_char = POSIX_BSP_output_char;
21BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.