Skip to content
Snippets Groups Projects
Commit 649d9bb1 authored by Stefen Guzik's avatar Stefen Guzik
Browse files

Integration of Chaco into Gmsh

parent 5d397ed8
No related branches found
No related tags found
No related merge requests found
Showing with 19 additions and 1 deletion
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
#include "defs.h"
#include "structs.h"
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
#include "Gmsh_printf.h"
#include "params.h"
#include "defs.h"
#include "structs.h"
......
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
#include "structs.h"
#include "defs.h"
#include "params.h"
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <math.h>
#include "Gmsh_printf.h"
#include "defs.h"
#include "structs.h"
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <math.h>
#include "Gmsh_printf.h"
#include "defs.h"
#include "structs.h"
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <math.h>
#include "Gmsh_printf.h"
#include "structs.h"
#include "defs.h"
......
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
#include "params.h"
#include "defs.h"
#include "structs.h"
......
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
#include "params.h"
#include "defs.h"
#include "structs.h"
......
......@@ -5,6 +5,7 @@
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "Gmsh_printf.h"
#include "defs.h"
#include "params.h"
#include "structs.h"
......
......@@ -5,6 +5,7 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "Gmsh_printf.h"
#include "defs.h"
/* Record a return TRUE if answer is yes, FALSE if no. */
......
......@@ -4,6 +4,8 @@
#include <stdio.h>
#include <string.h>
#include "Gmsh_printf.h"
#include "Gmsh_exit.h"
/* Wrapper for exit() - print message and exit with status code. Exit code
of 0 indicates normal termination. Exit code of 1 indicates early
......@@ -22,5 +24,6 @@ int status;
fprintf(Output_File, "%s\n", msg);
}
}
exit(status);
/* exit(status); */
Gmsh_exit();
}
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
#include "Gmsh_printf.h"
/* Debug break point. */
void checkpnt(tag)
......
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
/* Print a double precision number with filtering format to screen. */
void doubleout(number, mode)
......
......@@ -3,6 +3,7 @@
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include "Gmsh_printf.h"
#include "defs.h"
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <malloc.h>
#include "Gmsh_printf.h"
static int nmalloc = 0; /* number of calls to malloc */
static int nfree = 0; /* number of calls to free */
......
......@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
#include "Gmsh_printf.h"
/* Wrapper for a printf statement with a string as only arg.
Prints to screen and to output file if there is one. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment