diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-05-16 16:07:18 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-05-16 16:07:18 -0600 |
commit | 0a51cc868eafe72a98d64e48d8b2ba30a7d8f5dc (patch) | |
tree | 90e75e8372ffacd878413bdff663d9cd7f7e1d75 /libdimension/dimension/map.h | |
parent | 065846d055c9c0956fe4bf1762d81a4b72b5d5a8 (diff) | |
download | dimension-0a51cc868eafe72a98d64e48d8b2ba30a7d8f5dc.tar.xz |
Get rid of include guards on sub-headers.
Diffstat (limited to 'libdimension/dimension/map.h')
-rw-r--r-- | libdimension/dimension/map.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libdimension/dimension/map.h b/libdimension/dimension/map.h index ca30b3a..80b48b6 100644 --- a/libdimension/dimension/map.h +++ b/libdimension/dimension/map.h @@ -18,15 +18,11 @@ * <http://www.gnu.org/licenses/>. * *************************************************************************/ - /** * @file * Generic maps (backend for color_maps, pigment_maps, etc.). */ -#ifndef DIMENSION_MAP_H -#define DIMENSION_MAP_H - /** A map. */ typedef struct dmnsn_map { dmnsn_free_fn *free_fn; /**< Destructor callback. */ @@ -79,5 +75,3 @@ void dmnsn_evaluate_map(const dmnsn_map *map, double n, * @param[in] callback The callback to apply to the elements. */ void dmnsn_map_apply(dmnsn_map *map, dmnsn_callback_fn *callback); - -#endif /* DIMENSION_MAP_H */ |