From: Jeremy Kolb Date: Sun, 12 Nov 2006 18:18:02 +0000 (+0000) Subject: Add include guard. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5d00cf8c93d607876f66ca87e82087497f47d4a;p=mesa.git Add include guard. --- diff --git a/src/mesa/drivers/dri/nouveau/nouveau_object.h b/src/mesa/drivers/dri/nouveau/nouveau_object.h index 5fe7487c47b..1065a0be59e 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_object.h +++ b/src/mesa/drivers/dri/nouveau/nouveau_object.h @@ -1,3 +1,5 @@ +#ifndef __NOUVEAU_OBJECT_H__ +#define __NOUVEAU_OBJECT_H__ #include "nouveau_context.h" @@ -11,3 +13,4 @@ enum DMASubchannel { NvSub3D = 1, }; +#endif