summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/c/fFreeHandle.c
blob: 761658348a6e185499e63e9a092166b3bbcadefa (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 fFreeHandle(F2D* out)
{
    if(out != NULL)
        free(out);

    return;
}