/* Copyright 2014-2017 Alex 'AdUser' Z (ad_user@runbox.com) * * This file is part of libsimdb * * 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. */ /** * @file * Common include headers */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /** frees memory and sets pointer to zero */ #define FREE(ptr) \ free((ptr)); (ptr) = NULL;