summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/c/uiFreeHandle.c
blob: ce64ad913e20b194262a5346681ca315ada2224d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/********************************
Author: Sravanthi Kota Venkata
********************************/

#include <stdio.h>
#include <stdlib.h>
#include "sdvbs_common.h"

void uiFreeHandle(UI2D* out)
{
    free(out);

    return;
}