move _cleanup from findiop.c to flsbuf.c so lorder doesn't get confused
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 23 Sep 1988 07:52:58 +0000 (23:52 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 23 Sep 1988 07:52:58 +0000 (23:52 -0800)
SCCS-vsn: lib/libc/stdio/findfp.c 5.7
SCCS-vsn: lib/libc/stdio/wbuf.c 5.3

usr/src/lib/libc/stdio/findfp.c
usr/src/lib/libc/stdio/wbuf.c

index 0dcf8e8..33b943c 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)findfp.c   5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)findfp.c   5.7 (Berkeley) %G%";
 #endif LIBC_SCCS and not lint
 
 #include <stdio.h>
 #endif LIBC_SCCS and not lint
 
 #include <stdio.h>
@@ -120,10 +120,3 @@ _fwalk(function)
                                (*function)(*iov);
        }
 }
                                (*function)(*iov);
        }
 }
-
-_cleanup()
-{
-       extern int fclose();
-
-       _fwalk(fclose);
-}
index 2f47b0d..9d0a650 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)wbuf.c     5.2 (Berkeley) %G%";
+static char sccsid[] = "@(#)wbuf.c     5.3 (Berkeley) %G%";
 #endif LIBC_SCCS and not lint
 
 #include       <stdio.h>
 #endif LIBC_SCCS and not lint
 
 #include       <stdio.h>
@@ -119,3 +119,10 @@ fclose(iop)
        iop->_file = 0;
        return(r);
 }
        iop->_file = 0;
        return(r);
 }
+
+_cleanup()
+{
+       extern int _fwalk();
+
+       _fwalk(fclose);
+}