diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-05-07 00:38:23 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-05-07 00:38:23 +0000 |
commit | 4cd8d7439110f2e674a6f6e182a13a67620aa9d1 (patch) | |
tree | 75c4ebb2db7daf20e0ac5db701562b6496405924 /libdimension/dimension/color.h | |
parent | dd569686fa62d2736f9f5f3586af96b2aac06cd4 (diff) | |
download | dimension-4cd8d7439110f2e674a6f6e182a13a67620aa9d1.tar.xz |
Add new general array interface.
Diffstat (limited to 'libdimension/dimension/color.h')
-rw-r--r-- | libdimension/dimension/color.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdimension/dimension/color.h b/libdimension/dimension/color.h index f1964c3..ab6efa3 100644 --- a/libdimension/dimension/color.h +++ b/libdimension/dimension/color.h @@ -18,13 +18,13 @@ * <http://www.gnu.org/licenses/>. * *************************************************************************/ +#ifndef DIMENSION_COLOR_H +#define DIMENSION_COLOR_H + /* * Types to represent color. */ -#ifndef DIMENSION_COLOR_H -#define DIMENSION_COLOR_H - /* Internally, we use CIE 1931 XYZ color. */ typedef struct { double X, Y, Z; |