Modified function heads & prototypes.
[yaz-moved-to-github.git] / odr / odr_cons.c
index e61a359..4e54334 100644 (file)
@@ -4,7 +4,10 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: odr_cons.c,v $
- * Revision 1.13  1995-08-15 11:16:39  quinn
+ * Revision 1.14  1995-09-27 15:02:58  quinn
+ * Modified function heads & prototypes.
+ *
+ * Revision 1.13  1995/08/15  11:16:39  quinn
  * Fixed pretty-printers.
  * CV:e ----------------------------------------------------------------------
  * CV:e ----------------------------------------------------------------------
@@ -51,7 +54,7 @@
 #include <odr.h>
 #include <assert.h>
 
-int odr_constructed_begin(ODR o, void *p, int class, int tag)
+int MDF odr_constructed_begin(ODR o, void *p, int class, int tag)
 {
     int res;
     int cons = 1;
@@ -107,7 +110,7 @@ int odr_constructed_begin(ODR o, void *p, int class, int tag)
     return 1;
 }
 
-int odr_constructed_more(ODR o)
+int MDF odr_constructed_more(ODR o)
 {
     if (o->error)
        return 0;
@@ -119,7 +122,7 @@ int odr_constructed_more(ODR o)
        return (!(*o->bp == 0 && *(o->bp + 1) == 0));
 }
 
-int odr_constructed_end(ODR o)
+int MDF odr_constructed_end(ODR o)
 {
     int res;
     int pos;