BSD 4_3 release
[unix-history] / usr / src / lib / libc / stdio / setbuf.c
index 774c6f4..4b5b59b 100644 (file)
@@ -1,8 +1,17 @@
-/* @(#)setbuf.c        4.2 (Berkeley) %G% */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)setbuf.c   5.2 (Berkeley) 3/9/86";
+#endif LIBC_SCCS and not lint
+
 #include       <stdio.h>
 
 setbuf(iop, buf)
 #include       <stdio.h>
 
 setbuf(iop, buf)
-register struct _iobuf *iop;
+register FILE *iop;
 char *buf;
 {
        if (iop->_base != NULL && iop->_flag&_IOMYBUF)
 char *buf;
 {
        if (iop->_base != NULL && iop->_flag&_IOMYBUF)