Add a forgotten include guard

gbytes.h was missing the single-include guard.
This commit is contained in:
Matthias Clasen 2012-03-24 23:00:15 -04:00
parent de64aa8bd7
commit e927df7b7a

View File

@ -21,6 +21,10 @@
* Stef Walter <stefw@collabora.co.uk>
*/
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
#error "Only <glib.h> can be included directly."
#endif
#ifndef __G_BYTES_H__
#define __G_BYTES_H__