Mercurial > ecos-v3_0-branch
changeset 2803:d21b0d3d2e3e
* include/stdio.h: Removed extra semicolon after scanf()
prototype.
| author | jlarmour |
|---|---|
| date | Mon, 16 Feb 2009 21:41:12 +0000 |
| parents | e14d4c233d66 |
| children | 32cb142393e6 |
| files | packages/language/c/libc/stdio/current/ChangeLog packages/language/c/libc/stdio/current/include/stdio.h |
| diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/language/c/libc/stdio/current/ChangeLog +++ b/packages/language/c/libc/stdio/current/ChangeLog @@ -1,3 +1,8 @@ +2009-02-16 Lars Povlsen <lpovlsen@vitesse.com> + + * include/stdio.h: Removed extra semicolon after scanf() + prototype. + 2009-01-18 Jonathan Larmour <jifl@eCosCentric.com> * src/common/fflush.cxx (cyg_libc_stdio_flush_all_but): Fix silly
--- a/packages/language/c/libc/stdio/current/include/stdio.h +++ b/packages/language/c/libc/stdio/current/include/stdio.h @@ -174,7 +174,7 @@ printf( const char * /* format */, ... ) __externC int scanf( const char * /* format */, ... ) __THROW - CYGBLD_ATTRIB_SCANF_FORMAT(1, 2);; + CYGBLD_ATTRIB_SCANF_FORMAT(1, 2); __externC int sprintf( char * /* str */, const char * /* format */, ... ) __THROW
