Added prototypes to all functions in example.c. Fixed segv on x86_64 machines.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8144 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Kevin Ruland 2005-12-31 02:56:51 +00:00
commit 5bc93c9e6a

View file

@ -27,3 +27,8 @@ extern Point pt;
extern int status;
extern char path[256];
extern void print_vars();
extern int *new_int(int value);
extern Point *new_Point(int x, int y);
extern char *Point_print(Point *p);
extern void pt_print();