diff liboctave/mk-ops.awk @ 6708:0ce71beb1cf3

[project @ 2007-06-13 06:40:48 by jwe]
author jwe
date Wed, 13 Jun 2007 06:40:49 +0000
parents fabb1be5fd84
children 4270ded9ddc6
line wrap: on
line diff
--- a/liboctave/mk-ops.awk
+++ b/liboctave/mk-ops.awk
@@ -147,15 +147,15 @@
           printf ("#include \"mx-op-defs.h\"\n") >> h_file;
 
           if (bin_ops)
-            printf ("%s%s_BIN_OP_DECLS (%s, %s, %s)\n", lhs_class,
+            printf ("%s%s_BIN_OP_DECLS (%s, %s, %s, OCTAVE_API)\n", lhs_class,
 		    rhs_class, result_type, lhs_type, rhs_type) >> h_file
 
           if (cmp_ops)
-            printf ("%s%s_CMP_OP_DECLS (%s, %s)\n", lhs_class,
+            printf ("%s%s_CMP_OP_DECLS (%s, %s, OCTAVE_API)\n", lhs_class,
 		    rhs_class, lhs_type, rhs_type) >> h_file
 
           if (bool_ops)
-            printf ("%s%s_BOOL_OP_DECLS (%s, %s)\n", lhs_class,
+            printf ("%s%s_BOOL_OP_DECLS (%s, %s, OCTAVE_API)\n", lhs_class,
 		    rhs_class, lhs_type, rhs_type) >> h_file