From 6ead37dc63b10852ccf9b577f4046fb12817c261 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Thu, 6 Feb 2014 12:28:49 +0000 Subject: [PATCH] [FASTFAT] * Add header guards to the main header. * Improve header inclusions. CORE-7716 svn path=/trunk/; revision=62008 --- reactos/drivers/filesystems/fastfat/vfat.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/filesystems/fastfat/vfat.h b/reactos/drivers/filesystems/fastfat/vfat.h index f627ff65638..791daf29449 100644 --- a/reactos/drivers/filesystems/fastfat/vfat.h +++ b/reactos/drivers/filesystems/fastfat/vfat.h @@ -1,5 +1,7 @@ +#ifndef _FASTFAT_PCH_ +#define _FASTFAT_PCH_ + #include -#include #include #include @@ -949,4 +951,4 @@ NTSTATUS VfatSetVolumeInformation( PVFAT_IRP_CONTEXT IrpContext); -/* EOF */ +#endif /* _FASTFAT_PCH_ */ -- 2.17.1