1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS kernel 4 * FILE: lib/rossym/delete.c 5 * PURPOSE: Free rossym info 6 * 7 * PROGRAMMERS: Ge van Geldorp (gvg@reactos.com) 8 */ 9 10 #include <precomp.h> 11 12 VOID 13 RosSymDelete(PROSSYM_INFO RosSymInfo) 14 { 15 dwarfclose(RosSymInfo); 16 } 17 18 /* EOF */ 19