Mercurial > hg > octave-nkf
diff src/defun-dld.h @ 525:509e9a2d93a6
[project @ 1994-07-20 18:45:27 by jwe]
Initial revision
author | jwe |
---|---|
date | Wed, 20 Jul 1994 18:45:27 +0000 |
parents | |
children | 95ee5e330179 |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/src/defun-dld.h @@ -0,0 +1,43 @@ +// defun-dld.h -*- C++ -*- +/* + +Copyright (C) 1992, 1993, 1994 John W. Eaton + +This file is part of Octave. + +Octave is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any +later version. + +Octave is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Octave; see the file COPYING. If not, write to the Free +Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#if !defined (octave_defun_dld_h) +#define octave_defun_dld_h 1 + +#if defined (octave_defun_h) +#error defun.h and defun-dld.h both included in same file! +#endif + +#include "defun-int.h" + +#define DEFUN_DLD(name, fname, sname, nargin_max, nargout_max, doc) \ + DEFUN_INTERNAL (name, fname, sname, nargin_max, nargout_max, 0, doc) + +#endif + +/* +;;; Local Variables: *** +;;; mode: C++ *** +;;; page-delimiter: "^/\\*" *** +;;; End: *** +*/