X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fstdio.h;h=1939a48f0fb61fc5b86a1c806e6e5b0801b22c95;hb=bf2c48fa1a6e068f232d84aae43b5dad654a9017;hp=aedf3744525eb20e562b0a1ec03e3a129768712b;hpb=002e91087c817f8281fccee327e0d8e98c691a2f;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/stdio.h b/include/stdio.h index aedf374..1939a48 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -5,14 +5,14 @@ #include /* stdin */ -int getc(void); +int getchar(void); int tstc(void); /* stdout */ #if !defined(CONFIG_SPL_BUILD) || \ - (defined(CONFIG_TPL_BUILD) && defined(CONFIG_TPL_SERIAL_SUPPORT)) || \ + (defined(CONFIG_TPL_BUILD) && defined(CONFIG_TPL_SERIAL)) || \ (defined(CONFIG_SPL_BUILD) && !defined(CONFIG_TPL_BUILD) && \ - defined(CONFIG_SPL_SERIAL_SUPPORT)) + defined(CONFIG_SPL_SERIAL)) void putc(const char c); void puts(const char *s); int __printf(1, 2) printf(const char *fmt, ...);