|
From: <sv...@va...> - 2013-09-15 09:56:25
|
Author: florian
Date: Sun Sep 15 09:56:18 2013
New Revision: 13547
Log:
Fix include guard.
Modified:
trunk/include/pub_tool_poolalloc.h
Modified: trunk/include/pub_tool_poolalloc.h
==============================================================================
--- trunk/include/pub_tool_poolalloc.h (original)
+++ trunk/include/pub_tool_poolalloc.h Sun Sep 15 09:56:18 2013
@@ -1,6 +1,6 @@
/*--------------------------------------------------------------------*/
-/*--- A simple pool (memory) allocator. pub_tool_poolalloc.h ---*/
+/*--- A simple pool (memory) allocator. pub_tool_poolalloc.h ---*/
/*--------------------------------------------------------------------*/
/*
@@ -28,8 +28,8 @@
The GNU General Public License is contained in the file COPYING.
*/
-#ifndef __PUB_TOOL_GROUPALLOC_H
-#define __PUB_TOOL_GROUPALLOC_H
+#ifndef __PUB_TOOL_POOLALLOC_H
+#define __PUB_TOOL_POOLALLOC_H
//--------------------------------------------------------------------
// PURPOSE: Provides efficient allocation and free of elements of
|