diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c24cb7e..70be6ef 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -27,9 +27,6 @@ SET(SOURCES include/utils.h - utils/runopts.c - include/runopts.h - utils/dawn_uci.c include/dawn_uci.h diff --git a/src/include/runopts.h b/src/include/runopts.h deleted file mode 100644 index bef010d..0000000 --- a/src/include/runopts.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef __DAWN_RUNOPTS_H_ -#define __DAWN_RUNOPTS_H_ - -TODO: Delete - -#endif diff --git a/src/utils/dawn_uci.c b/src/utils/dawn_uci.c index dab8b62..97148ed 100644 --- a/src/utils/dawn_uci.c +++ b/src/utils/dawn_uci.c @@ -9,7 +9,7 @@ static struct uci_context *uci_ctx; static struct uci_package *uci_pkg; // why is this not included in uci lib...?! -// fund here: https://github.com/br101/pingcheck/blob/master/uci.c +// found here: https://github.com/br101/pingcheck/blob/master/uci.c static int uci_lookup_option_int(struct uci_context *uci, struct uci_section *s, const char *name) { const char *str = uci_lookup_option_string(uci, s, name); diff --git a/src/utils/runopts.c b/src/utils/runopts.c deleted file mode 100644 index da20295..0000000 --- a/src/utils/runopts.c +++ /dev/null @@ -1,3 +0,0 @@ -// TODO: Delete - -#include "runopts.h"