diff options
-rw-r--r-- | algorithms.h | 5 | ||||
-rw-r--r-- | algorithms/common.h | 5 | ||||
-rw-r--r-- | fractal-gen.h | 5 |
3 files changed, 0 insertions, 15 deletions
diff --git a/algorithms.h b/algorithms.h index 0529807..bc83c12 100644 --- a/algorithms.h +++ b/algorithms.h @@ -25,12 +25,7 @@ * SUCH DAMAGE. */ -#ifndef GENERATORS_H -#define GENERATORS_H - void *generate_mandelbrot_section(void *section); void *generate_burning_ship_section(void *section); void *generate_burning_ship_lattice_section(void *section); void *generate_tricorn_section(void *section); - -#endif diff --git a/algorithms/common.h b/algorithms/common.h index b52963e..5949adb 100644 --- a/algorithms/common.h +++ b/algorithms/common.h @@ -25,13 +25,8 @@ * SUCH DAMAGE. */ -#ifndef ALGORITHMS_COMMON_H -#define ALGORITHMS_COMMON_H - #include <stdlib.h> #include <math.h> #include <complex.h> #include "../fractal-gen.h" - -#endif diff --git a/fractal-gen.h b/fractal-gen.h index 899dd74..ef7c532 100644 --- a/fractal-gen.h +++ b/fractal-gen.h @@ -25,9 +25,6 @@ * SUCH DAMAGE. */ -#ifndef FRACTAL_GEN_H -#define FRACTAL_GEN_H - #include <stdbool.h> #include <pthread.h> @@ -56,5 +53,3 @@ generator_func select_generator(const char* name); void show_help(); #include "algorithms.h" - -#endif |