diff src/defun-dld.h @ 3295:35a6d027772c

[project @ 1999-10-19 10:13:02 by jwe]
author jwe
date Tue, 19 Oct 1999 10:13:06 +0000
parents e330cb788508
children 511caaa5e98e
line wrap: on
line diff
--- a/src/defun-dld.h
+++ b/src/defun-dld.h
@@ -40,15 +40,21 @@
 // and the second is for the definition of the function.
 
 #if defined (MAKE_BUILTINS)
+
 #if ! (defined (OCTAVE_LITE) && defined (WITH_DYNAMIC_LINKING))
+
 #define DEFUN_DLD(name, args_name, nargout_name, doc) \
   DEFUN_INTERNAL (name, args_name, nargout_name, 0, doc)
+
 #endif
+
 #else
+
 #define DEFUN_DLD(name, args_name, nargout_name, doc) \
   DECLARE_FUN (name, args_name, nargout_name); \
   DEFINE_FUN_INSTALLER_FUN (name, doc) \
   DECLARE_FUN (name, args_name, nargout_name)
+
 #endif
 
 #endif