Forgot to commit this file with revision 15013
Modified: trunk/reactos/lib/ntdll/rtl/libsupp.c

Modified: trunk/reactos/lib/ntdll/rtl/libsupp.c
--- trunk/reactos/lib/ntdll/rtl/libsupp.c	2005-05-05 19:17:25 UTC (rev 15018)
+++ trunk/reactos/lib/ntdll/rtl/libsupp.c	2005-05-05 19:36:25 UTC (rev 15019)
@@ -63,7 +63,17 @@
       Mem);
 }
 
+VOID
+STDCALL
+ExFreePoolWithTag(IN PVOID Mem, IN ULONG Tag)
+{
+   RtlFreeHeap (
+      RtlGetProcessHeap (),
+      0,
+      Mem);
+}
 
+
 #ifdef DBG
 VOID FASTCALL
 CHECK_PAGED_CODE_RTL(char *file, int line)