Stub out most of stdio on AltOS
[fw/pdclib] / platform / altos / functions / _PDCLIB / prepread.c
1 /* $Id$ */
2
3 /* _PDCLIB_prepread( struct _PDCLIB_file_t * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <stdio.h>
10
11 extern int PDCLIB_NO_ACTUAL_STDIO();
12
13 int _PDCLIB_prepread( struct _PDCLIB_file_t * stream )
14 {
15         return PDCLIB_NO_ACTUAL_STDIO();
16 }
17
18 #ifdef TEST
19 #include <_PDCLIB_test.h>
20
21 int main( void )
22 {
23     /* Testing covered by ftell.c */
24     return TEST_RESULTS;
25 }
26
27 #endif
28