#include "extern.h"

rsoutm()        
        { int ix,ch;
          for ( ix = 0 ; ix <=255 ; ix++ )
              {
				ch = *(ssent + ix);
	            if (ch == NULL) break;
		        rsbwrite(ch,1);
                if ( moniflg ) putchar(ch);

	            addlf(ch);
              }


         *(ssent) = NULL;
                 
         return(0);
        }
        
