#include "onerr.h"

 #include <string.h>
 #include "stdio.h"


void on_error(char *s){
 printf(s);
 waiting();
 exit(-1);
};

