Stub out most of stdio on AltOS
authorKeith Packard <keithp@keithp.com>
Mon, 19 Mar 2012 05:42:33 +0000 (22:42 -0700)
committerKeith Packard <keithp@keithp.com>
Mon, 19 Mar 2012 05:42:33 +0000 (22:42 -0700)
commitaca4bf7601bc9aa2a80b71c435166c15968e142a
tree55ceb2417cff165a951cb58c06ce628ae97a46e1
parent4348b127b85c6d8f8fb870635c30a42bfa20d689
Stub out most of stdio on AltOS

We're only using stdio for printf support, so stub out most of the
rest of it. A more complete job could be done, but this seems
sufficient for now.

Signed-off-by: Keith Packard <keithp@keithp.com>
16 files changed:
platform/altos/functions/_PDCLIB/fillbuffer.c
platform/altos/functions/_PDCLIB/flushbuffer.c
platform/altos/functions/_PDCLIB/prepread.c [new file with mode: 0644]
platform/altos/functions/_PDCLIB/prepwrite.c [new file with mode: 0644]
platform/altos/functions/stdio/fflush.c [new file with mode: 0644]
platform/altos/functions/stdio/fgetc.c [new file with mode: 0644]
platform/altos/functions/stdio/fgetpos.c [new file with mode: 0644]
platform/altos/functions/stdio/fgets.c [new file with mode: 0644]
platform/altos/functions/stdio/fputc.c [new file with mode: 0644]
platform/altos/functions/stdio/fputs.c [new file with mode: 0644]
platform/altos/functions/stdio/fread.c [new file with mode: 0644]
platform/altos/functions/stdio/fsetpos.c [new file with mode: 0644]
platform/altos/functions/stdio/fwrite.c [new file with mode: 0644]
platform/altos/functions/stdio/gets.c [new file with mode: 0644]
platform/altos/functions/stdio/puts.c [new file with mode: 0644]
platform/altos/functions/stdio/ungetc.c [new file with mode: 0644]