diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-16 00:12:02 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-16 00:12:02 +0200 |
commit | 9e946cd05a4c30203bf95ce0cfe1a1fdf9f891ba (patch) | |
tree | 87e88dd618bde1716651f53f0ed2c2f0f032765f | |
parent | update makefile for quartz (diff) | |
download | blueshift-9e946cd05a4c30203bf95ce0cfe1a1fdf9f891ba.tar.gz blueshift-9e946cd05a4c30203bf95ce0cfe1a1fdf9f891ba.tar.bz2 blueshift-9e946cd05a4c30203bf95ce0cfe1a1fdf9f891ba.tar.xz |
add missed inclusion guard
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/blueshift_w32gdi_c.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/blueshift_w32gdi_c.h b/src/blueshift_w32gdi_c.h index c6c6909..540930b 100644 --- a/src/blueshift_w32gdi_c.h +++ b/src/blueshift_w32gdi_c.h @@ -14,6 +14,10 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef BLUESHIFT_W32GDI_C_H +#define BLUESHIFT_W32GDI_C_H + + #include <stdio.h> #include <stdlib.h> @@ -74,3 +78,6 @@ int blueshift_w32gdi_apply(int use_crtc, uint16_t* rgb_curves); */ void blueshift_w32gdi_close(void); + +#endif + |