TheBoussinesqModel  3.2.1
 All Data Structures Files Functions Variables Typedefs Macros Pages
error.c
Go to the documentation of this file.
1 /* #include "turtle.1a.h"*/
2 #include "turtle.h"
3 
4 /*-----------------------------------------------------------------------*/
5 void t_error(char *error_text)
6 /* Error handling */
7 {
8 
9  /* void exit(); */
10  char c;
11  fprintf(stderr,"\nError::Run time error\n");
12  fprintf(stderr,"Error::%s\n",error_text);
13  fprintf(stderr,"........exiting...\n");
14  c = getchar();
15  exit(1);
16 }
17