#ifndef _MAIN_ASM_H
#define _MAIN_ASM_H

#ifdef __cplusplus
    extern "C" { /* our assembly functions have C calling convention */
#endif

int asm_main(int,int,int  *);

  /* interface to my assembly main function */

#ifdef __cplusplus
    }
#endif

#endif /* _MAIN_ASM_H */