[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

@ -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 */
}