shithub: xml-9atom

ref: 47a288683dbdc55c5df9b9f65db9909de6021af0
dir: /libxml/xmlfree.c/

View raw version
#include <u.h>
#include <libc.h>
#include "xml.h"

void
xmlfree(Xml *xp)
{
	_Xheapfree(xp);
	free(xp);
}