changeset 277:1781618ec883

[project @ 1994-01-07 19:19:54 by jwe]
author jwe
date Fri, 07 Jan 1994 19:22:38 +0000
parents 4cf3c7df0e3d
children c2189d67a05c
files src/eig.cc src/fsolve.cc src/inv.cc
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/eig.cc
+++ b/src/eig.cc
@@ -1,7 +1,7 @@
 // f-eig.cc                                           -*- C++ -*-
 /*
 
-Copyright (C) 1993 John W. Eaton
+Copyright (C) 1993, 1994 John W. Eaton
 
 This file is part of Octave.
 
@@ -35,7 +35,7 @@
 
 #ifdef WITH_DLD
 tree_constant *
-builtin_eig (const tree_constant *args, int nargin, int nargout)
+builtin_eig_2 (const tree_constant *args, int nargin, int nargout)
 {
   return eig (args, nargin, nargout);
 }
--- a/src/fsolve.cc
+++ b/src/fsolve.cc
@@ -1,7 +1,7 @@
 // f-fsolve.cc                                           -*- C++ -*-
 /*
 
-Copyright (C) 1993 John W. Eaton
+Copyright (C) 1993, 1994 John W. Eaton
 
 This file is part of Octave.
 
@@ -39,7 +39,7 @@
 
 #ifdef WITH_DLD
 tree_constant *
-builtin_fsolve (const tree_constant *args, int nargin, int nargout)
+builtin_fsolve_2 (const tree_constant *args, int nargin, int nargout)
 {
   return fsolve (args, nargin, nargout);
 }
--- a/src/inv.cc
+++ b/src/inv.cc
@@ -1,7 +1,7 @@
 // f-inv.cc                                           -*- C++ -*-
 /*
 
-Copyright (C) 1993 John W. Eaton
+Copyright (C) 1993, 1994 John W. Eaton
 
 This file is part of Octave.
 
@@ -35,7 +35,7 @@
 
 #ifdef WITH_DLD
 tree_constant *
-builtin_inv (const tree_constant *args, int nargin, int nargout)
+builtin_inv_2 (const tree_constant *args, int nargin, int nargout)
 {
   tree_constant *retval = new tree_constant [2];
   retval[0] = inverse (args[1]);