]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* demo/foo.h: use LT_PARAMS instead of LTDL_PARAMS (this is not libltdl)
authorThomas Tanner <tanner@ffii.org>
Wed, 30 Jun 1999 12:51:35 +0000 (12:51 +0000)
committerThomas Tanner <tanner@gmx.de>
Wed, 30 Jun 1999 12:51:35 +0000 (12:51 +0000)
ChangeLog
demo/foo.h

index 4addec4f836764e34acf8cc9f7b30f593ae9e3f5..10aa5309440c056293d85555f03c48f5edd45a71 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+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
index 9cc61950fcc53a122f489ccff007ab84bba6b6a4..6d4fee709d542486c2ff1f61179254ba05287a5f 100644 (file)
@@ -50,10 +50,10 @@ USA. */
    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
 
@@ -82,8 +82,8 @@ USA. */
 
 /* 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