~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to ext/dl/handle.c

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2006-05-08 22:23:12 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060508222312-w2wqeaz030ifi59j
Tags: 1.9.0+20060423-3ubuntu1
* Resynchronized with Debian.
* Only change from Debian is the addition of
  debian/patches/903_sparc_fix_define.patch to fix illegal instructions
  at runtime on sparc. (change from 1.9.0+20050921-1ubuntu1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- C -*-
2
 
 * $Id: handle.c,v 1.18 2005/03/04 06:47:39 matz Exp $
 
2
 * $Id: handle.c,v 1.19 2005/09/24 00:17:42 akr Exp $
3
3
 */
4
4
 
5
5
#include <ruby.h>
126
126
rb_dlhandle_sym(VALUE self, VALUE sym)
127
127
{
128
128
    void (*func)();
129
 
    struct sym_data *data;
130
129
    struct dl_handle *dlhandle;
131
130
    void *handle;
132
131
    const char *name;