Initial revision.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@364 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Thien-Thi Nguyen 2000-04-03 14:28:59 +00:00
commit e0e54b762a
5 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/* File : example.i */
%module Example
%{
/* 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);
extern char *get_time();
%include guile/guilemain.i