[guile] Fix the guile examples on 64-bit platforms.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10074 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2007-10-30 01:08:24 +00:00
commit 97ce2ae61a
5 changed files with 11 additions and 17 deletions

View file

@ -1,10 +0,0 @@
#include <math.h>
typedef struct {
double x;
double y;
double z;
double w;
} Vector;

View file

@ -12,6 +12,7 @@ double get_m(double **M, int i, int j) {
}
%}
%inline {
/*** Matrix Operations ***/
extern double **new_matrix();
@ -32,7 +33,4 @@ extern double get_m(double **M, int i, int j);
extern void mat_mult(double **a, double **b, double **c);
/* Multiplies matrix a by b and places the result in c*/
}

View file

@ -5,6 +5,8 @@
#include "vector.h"
%}
%inline {
extern Vector *createv(double x,double y,double z,double w);
/* Creates a new vector v(x,y,z,w) */
@ -17,5 +19,4 @@ extern void printv(Vector *v);
extern void transform(double **T, Vector *v, Vector *t);
/* Transforms vector c to vector t by M*v --> t */
}