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

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

void iFreeHandle(I2D* out)
{
    if(out != NULL)
        free(out);

    return;
}