#include <setjmp.h>

#include "extern.h"

extern jmp_buf env;

rsout()             /* send sentence to RS232C with sendpac char  *ssent->RS232C  */

        {
         if ( ! chkcd() )
				{  longjmp(env,1);   /* con ¼Þ®³À² ÃÞ Å¹ÚÊÞ ÓÄÞÙ */
				}
         if ( rsoutm() == 9 ) return(9);
         return(0);
        }
