diff options
Diffstat (limited to 'lib/libc/stdio/getc.c')
-rw-r--r-- | lib/libc/stdio/getc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/getc.c b/lib/libc/stdio/getc.c index eff320a..1668407 100644 --- a/lib/libc/stdio/getc.c +++ b/lib/libc/stdio/getc.c @@ -42,14 +42,12 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* LIBC_SCCS and not lint */ +#include "namespace.h" #include <stdio.h> +#include "un-namespace.h" #include "libc_private.h" -/* - * A subroutine version of the macro getc. - */ #undef getc - int getc(fp) register FILE *fp; |