summaryrefslogtreecommitdiffstats
path: root/src/utils.c
blob: f1886c47f554dc73b7a4ec00523bbf0c483b8397 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2013 Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <stdlib.h>

#include "utils.h"

void xfree(const void *ptr)
{
	free((void *)ptr);
}