From 1970faa72b1a51a5d83f8e43f43bd713a07810c7 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 30 Aug 2020 12:33:05 -0700 Subject: [PATCH] remove the need to have lib/ortho in the include path Related to #1785. --- lib/ortho/fPQ.h | 2 +- lib/ortho/maze.h | 2 +- lib/ortho/partition.h | 2 +- lib/ortho/sgraph.h | 2 +- lib/ortho/structures.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/ortho/fPQ.h b/lib/ortho/fPQ.h index fba181c42..4bc71b560 100644 --- a/lib/ortho/fPQ.h +++ b/lib/ortho/fPQ.h @@ -13,7 +13,7 @@ /* Priority Queue Code for shortest path in graph */ -#include +#include /* typedef snode** PQ; */ #define N_VAL(n) (n)->n_val diff --git a/lib/ortho/maze.h b/lib/ortho/maze.h index 89891e42d..2f18963ac 100644 --- a/lib/ortho/maze.h +++ b/lib/ortho/maze.h @@ -14,7 +14,7 @@ #ifndef MAZE_H #define MAZE_H -#include +#include enum {M_RIGHT=0, M_TOP, M_LEFT, M_BOTTOM}; diff --git a/lib/ortho/partition.h b/lib/ortho/partition.h index 145c3545a..80eeaa532 100644 --- a/lib/ortho/partition.h +++ b/lib/ortho/partition.h @@ -14,7 +14,7 @@ #ifndef PARTITION_H #define PARTITION_H -#include +#include extern boxf* partition (cell*, int, int*, boxf); diff --git a/lib/ortho/sgraph.h b/lib/ortho/sgraph.h index 69a35a5c9..75d15e024 100644 --- a/lib/ortho/sgraph.h +++ b/lib/ortho/sgraph.h @@ -14,7 +14,7 @@ #ifndef SEARCH_G_H #define SEARCH_G_H -#include "structures.h" +#include typedef struct snode snode; typedef struct sedge sedge; diff --git a/lib/ortho/structures.h b/lib/ortho/structures.h index 3df5ebb1f..122737d90 100644 --- a/lib/ortho/structures.h +++ b/lib/ortho/structures.h @@ -16,7 +16,7 @@ #include "types.h" #include "cgraph.h" -#include "rawgraph.h" +#include typedef struct { double p1, p2; -- 2.40.0