mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
19 lines
340 B
C
19 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 */
|