handle exponents greater than 2 digits
[unix-history] / usr / src / lib / libc / stdio / fputc.c
index 1c250bb..c4b638e 100644 (file)
@@ -1,8 +1,11 @@
-/* @(#)fputc.c 4.1 (Berkeley) %G% */
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)fputc.c    5.2 (Berkeley) %G%";
+#endif LIBC_SCCS and not lint
+
 #include <stdio.h>
 
 fputc(c, fp)
 #include <stdio.h>
 
 fputc(c, fp)
-FILE *fp;
+register FILE *fp;
 {
        return(putc(c, fp));
 }
 {
        return(putc(c, fp));
 }