diff options
author | Keith Packard <keithp@keithp.com> | 2012-02-22 23:26:03 +1300 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-03-28 21:37:02 -0700 |
commit | 3c7d1f6cfffb43299041f2850a48177f4e9b83a5 (patch) | |
tree | 27f9e9b1cd53f6630e1888139ae7b537f5c403e0 /src | |
parent | bdfcc9112c41c494de23594963980a730b625cc4 (diff) |
'stdin' is a special name in some compiler environments, don't use it.
Switch to 'in' in the prototype for altos_serial_set_stdin.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ao.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ao.h b/src/core/ao.h index ce9a1f70..ac51c270 100644 --- a/src/core/ao.h +++ b/src/core/ao.h @@ -917,7 +917,7 @@ char ao_serial_pollchar(void) __critical; void -ao_serial_set_stdin(uint8_t stdin); +ao_serial_set_stdin(uint8_t in); #endif void |