# HG changeset patch # User zas_ # Date 1207916736 0 # Node ID 4dbeafae7a5338ad09fe194c10fe89345b72f166 # Parent 72445e31aa5812051ecde6708c34835cd5fb854c Add missing #ifdef/#endif. diff -r 72445e31aa58 -r 4dbeafae7a53 src/histogram.h --- 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 */