Updated Guile examples.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@738 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matthias Köppe 2000-08-30 20:36:59 +00:00
commit 7c7a6818fe
4 changed files with 0 additions and 5 deletions

View file

@ -1,7 +1,6 @@
//
// FILE : matrix.i
%init Matrix_init
%{
void set_m(double **M, int i, int j, double val) {

View file

@ -7,7 +7,6 @@
#include <math.h>
%}
%include guile/typemaps.i
%include guilemain.i
%include matrix.i
%include vector.i

View file

@ -1,7 +1,6 @@
//
// FILE : vector.i
%init Vector_Init
%{
#include "vector.h"
%}

View file

@ -4,8 +4,6 @@
/* Put headers and other declarations here */
%}
%include guile/typemaps.i
extern double My_variable;
extern int fact(int);
extern int mod(int n, int m);