diff src/mkbuiltins @ 7503:8c32f95c2639

convert mapper functions to new format
author David Bateman <dbateman@free.fr>
date Wed, 20 Feb 2008 04:22:50 -0500
parents 818b1417bce9
children 5dd06f19e9be
line wrap: on
line diff
--- a/src/mkbuiltins
+++ b/src/mkbuiltins
@@ -86,10 +86,6 @@
 
 #define XDEFCONST_INTERNAL(name, defn, doc)
 
-#define XDEFUN_MAPPER_INTERNAL(name, ch_map, d_b_map, c_b_map, d_d_map, \
-			       d_c_map, c_c_map, lo, hi, \
-			       ch_map_flag, can_ret_cmplx_for_real, doc)
-
 EOF
 
 for file in $DEF_FILES; do
@@ -104,8 +100,8 @@
 
 cat << \EOF
 
-static void
-install_builtin_functions (void)
+void
+install_builtins (void)
 {
 EOF
 
@@ -117,14 +113,6 @@
 cat << \EOF
 }
 
-extern void install_mapper_functions (void);
-
-void
-install_builtins (void)
-{
-  install_mapper_functions ();
-  install_builtin_functions ();
-}
 EOF
 
 exit 0