Mercurial > hg > octave-jordi
comparison src/defun-dld.h @ 550:95ee5e330179
[project @ 1994-07-22 20:17:58 by jwe]
author | jwe |
---|---|
date | Fri, 22 Jul 1994 20:17:58 +0000 |
parents | 509e9a2d93a6 |
children | 21cc5b9b9ed6 |
comparison
equal
deleted
inserted
replaced
549:75a371805554 | 550:95ee5e330179 |
---|---|
28 #error defun.h and defun-dld.h both included in same file! | 28 #error defun.h and defun-dld.h both included in same file! |
29 #endif | 29 #endif |
30 | 30 |
31 #include "defun-int.h" | 31 #include "defun-int.h" |
32 | 32 |
33 // Define a builtin function that may be loaded dynamically at run | |
34 // time. | |
35 // | |
36 // If Octave is not configured for dynamic linking of builtin | |
37 // functions, this is exactly like DEFUN. | |
38 | |
33 #define DEFUN_DLD(name, fname, sname, nargin_max, nargout_max, doc) \ | 39 #define DEFUN_DLD(name, fname, sname, nargin_max, nargout_max, doc) \ |
34 DEFUN_INTERNAL (name, fname, sname, nargin_max, nargout_max, 0, doc) | 40 DEFUN_INTERNAL (name, fname, sname, nargin_max, nargout_max, 0, doc) |
35 | 41 |
36 #endif | 42 #endif |
37 | 43 |