diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-05 19:12:35 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-05 19:12:35 +0000 |
commit | 9c071de3cf25b10b3c05815b819331c43a4e1822 (patch) | |
tree | 7df280d5b0cc729b09245fa6c4817a1edc53b3ea /libc/sysdeps | |
parent | c6d0003bd961c1d72d6563ae03f4a877355b1e4f (diff) |
Remove erroneous trailing semicolon.
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/bits/uClibc_stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/bits/uClibc_stdio.h b/libc/sysdeps/linux/common/bits/uClibc_stdio.h index 6c0cff7ed..a8ca34c9b 100644 --- a/libc/sysdeps/linux/common/bits/uClibc_stdio.h +++ b/libc/sysdeps/linux/common/bits/uClibc_stdio.h @@ -435,7 +435,7 @@ extern int _cs_close(void *cookie); ? (*(stream)->bufpos++) = (c) \ : fputc_unlocked((c),(stream)) ) #else /* __STDIO_PUTC_MACRO */ -#define __PUTC(c, stream) fputc_unlocked(c, stream); +#define __PUTC(c, stream) fputc_unlocked(c, stream) #endif /* __STDIO_PUTC_MACRO */ |