From e927df7b7ab089f5e7de452a509130c06e13e4f9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 24 Mar 2012 23:00:15 -0400 Subject: [PATCH] Add a forgotten include guard gbytes.h was missing the single-include guard. --- glib/gbytes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/glib/gbytes.h b/glib/gbytes.h index a120e211d..de3c8f808 100644 --- a/glib/gbytes.h +++ b/glib/gbytes.h @@ -21,6 +21,10 @@ * Stef Walter */ +#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) +#error "Only can be included directly." +#endif + #ifndef __G_BYTES_H__ #define __G_BYTES_H__