+1999-06-30 Thomas Tanner <tanner@ffii.org>
+
+ * demo/foo.h: use LT_PARAMS instead of LTDL_PARAMS (this is not libltdl)
+
1999-06-29 Thomas Tanner <tanner@ffii.org>
* NEWS: rename dummy to force
compilers can issue warnings about type mismatches. */
#undef LTDL_PARAMS
#if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(__CYGWIN32__) || defined(__cplusplus)
-# define LTDL_PARAMS(protos) protos
+# define LT_PARAMS(protos) protos
# define lt_ptr_t void*
#else
-# define LTDL_PARAMS(protos) ()
+# define LT_PARAMS(protos) ()
# define lt_ptr_t char*
#endif
/* Declarations. Note the wonderful use of the above macros. */
__BEGIN_DECLS
-int foo LTDL_PARAMS((void));
-int hello LTDL_PARAMS((void));
+int foo LT_PARAMS((void));
+int hello LT_PARAMS((void));
EXTERN int nothing;
__END_DECLS