mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
18 lines
340 B
C
18 lines
340 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: lib/rossym/delete.c
|
|
* PURPOSE: Free rossym info
|
|
*
|
|
* PROGRAMMERS: Ge van Geldorp (gvg@reactos.com)
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
VOID
|
|
RosSymDelete(PROSSYM_INFO RosSymInfo)
|
|
{
|
|
dwarfclose(RosSymInfo);
|
|
}
|
|
|
|
/* EOF */
|