m4-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to m4/m4/builtin.c,v


From: Eric Blake
Subject: Changes to m4/m4/builtin.c,v
Date: Thu, 06 Sep 2007 22:58:27 +0000

CVSROOT:        /sources/m4
Module name:    m4
Changes by:     Eric Blake <ericb>      07/09/06 22:58:27

Index: m4/builtin.c
===================================================================
RCS file: /sources/m4/m4/m4/builtin.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- m4/builtin.c        7 Aug 2007 03:15:26 -0000       1.29
+++ m4/builtin.c        6 Sep 2007 22:58:26 -0000       1.30
@@ -30,14 +30,14 @@
    symbol value, suitable for use in the symbol table or for an
    argument to m4_push_builtin.  */
 m4_symbol_value *
-m4_builtin_find_by_name (lt_dlhandle handle, const char *name)
+m4_builtin_find_by_name (m4_module *handle, const char *name)
 {
-  lt_dlhandle cur = handle ? handle : m4__module_next (0);
+  m4_module *cur = handle ? handle : m4__module_next (NULL);
 
   do
     {
       const m4_builtin *builtin =
-       (m4_builtin *) lt_dlsym (cur, BUILTIN_SYMBOL);
+       (m4_builtin *) lt_dlsym (cur->handle, BUILTIN_SYMBOL);
 
       if (builtin)
        {
@@ -63,14 +63,14 @@
 /* Find the builtin which has FUNC.  If HANDLE argument is supplied
    then search only in HANDLE's builtin table.  */
 const m4_builtin *
-m4_builtin_find_by_func (lt_dlhandle handle, m4_builtin_func *func)
+m4_builtin_find_by_func (m4_module *handle, m4_builtin_func *func)
 {
-  lt_dlhandle cur = handle ? handle : m4__module_next (0);
+  m4_module *cur = handle ? handle : m4__module_next (NULL);
 
   do
     {
       const m4_builtin *builtin =
-       (const m4_builtin *) lt_dlsym (cur, BUILTIN_SYMBOL);
+       (const m4_builtin *) lt_dlsym (cur->handle, BUILTIN_SYMBOL);
 
       if (builtin)
        {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]