diff src/histogram.h @ 306:4dbeafae7a53

Add missing #ifdef/#endif.
author zas_
date Fri, 11 Apr 2008 12:25:36 +0000
parents fd5c62403498
children 48c8e49b571c
line wrap: on
line diff
--- a/src/histogram.h	Fri Apr 11 10:46:52 2008 +0000
+++ b/src/histogram.h	Fri Apr 11 12:25:36 2008 +0000
@@ -9,6 +9,8 @@
  * This software comes with no warranty of any kind, use at your own risk!
  */
 
+#ifndef HISTOGRAM_H
+#define HISTOGRAM_H
 
 /* Note: The order is important */
 #define HCHAN_R 0
@@ -29,3 +31,5 @@
 const gchar *histogram_label(Histogram *histogram);
 gulong histogram_read(Histogram *histogram, GdkPixbuf *imgpixbuf);
 gint histogram_draw(Histogram *histogram, GdkPixbuf *pixbuf, gint x, gint y, gint width, gint height);
+
+#endif /* HISTOGRAM_H */