/*mynative.c*/
/*Implementation of native method*/
/*Prototype for this function is found in the auto-generated file Native.h*/

#include <stdio.h>

void Native_mynative(struct HNative *hn)
{
        printf("within native method\n");
}

