declare SEGHOL
authorceriel <none@none>
Thu, 8 Sep 1988 10:01:32 +0000 (10:01 +0000)
committerceriel <none@none>
Thu, 8 Sep 1988 10:01:32 +0000 (10:01 +0000)
util/ceg/ce_back/as_back/back.h
util/ceg/ce_back/as_back/bottom.c

index 71c6df9..accbb4a 100644 (file)
@@ -4,7 +4,8 @@
 extern File *codefile;
 
 extern char *extnd_name(), *extnd_dnam(), *extnd_dlb(), *extnd_ilb(),
-           *extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start();
+           *extnd_hol(), *extnd_ext(), *extnd_pro(), *extnd_start(),
+           *extnd_part(), *extnd_cont();
 
 extern int holno, procno;
 
@@ -14,5 +15,6 @@ extern int holno, procno;
 #define        SEGROM          1
 #define        SEGCON          2
 #define        SEGBSS          3
+#define        SEGHOL          -1      /* Does not exist */
 
 #define        ABSOLUTE        1
index 4d5ba2e..dfc3033 100644 (file)
@@ -95,3 +95,19 @@ int hol;
        sprint( name, HOL_FMT, hol);
         return( name);
 }
+
+
+char *extnd_part( d)
+int d;
+{
+       sprint( name, "part%x", (arith) d);
+       return( name);
+}
+
+
+char *extnd_cont( d)
+int d;
+{
+       sprint( name, "cont%x", (arith) d);
+       return( name);
+}