From 6d883ed95c19ca26eb7df479a6c53ac51c9e6c12 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Tue, 28 Sep 2010 17:46:29 -0300 Subject: [PATCH] glib-private: Add include protection macro --- gst/glib-compat-private.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gst/glib-compat-private.h b/gst/glib-compat-private.h index a60e5152e8..ec8b56d72d 100644 --- a/gst/glib-compat-private.h +++ b/gst/glib-compat-private.h @@ -5,6 +5,9 @@ * Copyright 2005 David Schleef */ +#ifndef __GLIB_COMPAT_PRIVATE_H__ +#define __GLIB_COMPAT_PRIVATE_H__ + #include "gst_private.h" /* for g_warning */ #include @@ -19,3 +22,5 @@ typedef struct stat GStatBuf; /* adaptations */ G_END_DECLS + +#endif