diff src/fsolve.cc @ 272:7ec58832918f

[project @ 1994-01-06 18:54:08 by jwe]
author jwe
date Thu, 06 Jan 1994 18:54:08 +0000
parents bc5e6cb785d1
children 1781618ec883
line wrap: on
line diff
--- a/src/fsolve.cc
+++ b/src/fsolve.cc
@@ -43,6 +43,12 @@
 {
   return fsolve (args, nargin, nargout);
 }
+
+tree_constant *
+builtin_fsolve_options (const tree_constant *args, int nargin, int nargout)
+{
+  return fsolve_options (args, nargin, nargout);
+}
 #endif
 
 int
@@ -162,10 +168,19 @@
   return retval;
 }
 
+tree_constant *
+fsolve_options (const tree_constant *args, int nargin, int nargout)
+{
+// Assumes that we have been given the correct number of arguments.
+
+  tree_constant *retval = NULL_TREE_CONST;
+  error ("fsolve_options: not implemented yet");
+  return retval;
+}
+
 /*
 ;;; Local Variables: ***
 ;;; mode: C++ ***
 ;;; page-delimiter: "^/\\*" ***
 ;;; End: ***
 */
-