source: rtems-schedsim/schedsim/rtems/debugio.c @ e5e757b

Last change on this file since e5e757b was b38dbcc, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/14 at 14:55:21

Many files: rm white space at EOL and EOF

  • Property mode set to 100644
File size: 267 bytes
RevLine 
[aebb1ca]1/*
[a2aad55]2 *
[aebb1ca]3 */
4
5#include <rtems.h>
6#include <rtems/bspIo.h>
7
8#include <stdio.h>
9
10void BSP_output_char_f(char c)
11{
12  putchar( c );
13}
14
15BSP_output_char_function_type           BSP_output_char = BSP_output_char_f;
16BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.