blob: a8ac2118882be5731db00b9a84b233eef2146054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Example of a C++ extension to icon via loadfunc,
* without garbage collection difficulties.
* Type 'make iexample' to build.
* Carl Sturtivant, 2008/3/16
*/
#include "loadfuncpp.h"
using namespace Icon;
extern "C" int dummy(value argv[]) {
return SUCCEEDED;
}
|