diff options
author | Keith Packard <keithp@keithp.com> | 2018-08-05 12:23:22 +0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-13 08:21:58 -0700 |
commit | 7c04888cf9809e0c73f0813c74e8dd972facde3a (patch) | |
tree | ebb43ee5aa61cc65ce28595c19b4dd3c19812ead /src/lambdakey-v1.0/ao_pins.h | |
parent | 56629222711ba3ef7853405c9b07ad614fb29b95 (diff) |
altos: Switch to newlib-nano for libc on arm
Stop using pdclib
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lambdakey-v1.0/ao_pins.h')
-rw-r--r-- | src/lambdakey-v1.0/ao_pins.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lambdakey-v1.0/ao_pins.h b/src/lambdakey-v1.0/ao_pins.h index 58a75080..92ed24ee 100644 --- a/src/lambdakey-v1.0/ao_pins.h +++ b/src/lambdakey-v1.0/ao_pins.h @@ -19,14 +19,6 @@ #ifndef _AO_PINS_H_ #define _AO_PINS_H_ -#define fprintf(file, ...) ({ (void) (file); printf(__VA_ARGS__); }) -#undef putc -#define putc(c,file) ({ (void) (file); putchar(c); }) -#define fputs(s,file) ({ (void) (file); ao_put_string(s); }) -#undef getc -#define getc(file) ({ (void) (file); getchar(); }) -#define fflush(file) ({ (void) (file); flush(); }) - #define HAS_TASK 0 #define HAS_AO_DELAY 1 |