summaryrefslogtreecommitdiff
path: root/Lib/guile/guile_gh.swg
blob: 8484ba4e9075221576f726029b3f5b330af81b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- c -*-
   This SWIG interface file is processed if the Guile module is run
   with gh_ flavor.
*/

#define SWIGGUILE_GH

%runtime "guile_gh_run.swg"
%include "guile.i"

%init %{
  static int _swig_init = 0;

  if (!_swig_init) {
    SWIG_Guile_Init();
    SWIG_Guile_RegisterTypes(swig_types, swig_types_initial);
    _swig_init = 1;
  }

%}