view close.c @ 12:dbf24a82f625 default tip

Fix doxygen comments and add a Doxyfile
author Louis Opter <kalessin@kalessin.fr>
date Fri, 07 Jan 2011 21:49:31 +0100
parents 6ce4443e7545
children
line wrap: on
line source

#include <stdlib.h>

#include "_lxcstats.h"
#include "lxcstats.h"

int
lxcst_close(lxcst_handle *hdl)
{
    if (hdl) {
        free(hdl->cgroup_dir);
        free(hdl);
    }

    return (0);
}