consistent naming
authorkaashoek <none@none>
Tue, 3 May 1988 13:03:07 +0000 (13:03 +0000)
committerkaashoek <none@none>
Tue, 3 May 1988 13:03:07 +0000 (13:03 +0000)
util/ceg/ce_back/as_back/do_close.c
util/ceg/ce_back/as_back/do_open.c
util/ceg/ce_back/obj_back/do_close.c
util/ceg/defaults/pseudo/C_close.c
util/ceg/defaults/pseudo/C_open.c

index a8121f2..16ed4b4 100644 (file)
@@ -1,6 +1,6 @@
 #include "header.h"
 
-do_close()
+close_back()
 {
        sys_close( codefile);
 }
index f32f0a8..973d53f 100644 (file)
@@ -1,6 +1,6 @@
 #include "header.h"
 
-do_open( filename)
+open_back( filename)
 char *filename;
 {
        if ( filename == (char *) '\0')
index 8f86417..72f4c2c 100644 (file)
@@ -4,7 +4,7 @@
        
 close_back()
 {
-       output();
+       output_back();
 
        wr_close();
 }
index 0439df6..1512bca 100644 (file)
@@ -9,6 +9,6 @@ C_close()
        assert( busy);
 
        end_back();
-        do_close();
+        close_back();
        busy = 0;
 }
index cfa8fbc..780959f 100644 (file)
@@ -10,7 +10,7 @@ char *filename;
 {
        assert( !busy);
 
-       if ( !do_open( filename)) {
+       if ( !open_back( filename)) {
                fprint( STDERR, "Couldn't open %s\n", filename);
                return( 0);
        }