removed unused functions
diff --git a/GNUmakefile b/GNUmakefile
index 2a76fd8..11dfa80 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -69,10 +69,9 @@
 endif
 
 CFLAGS     ?= -O3 -funroll-loops $(CFLAGS_OPT)
-override CFLAGS += -Wall -g -Wno-pointer-sign \
+override CFLAGS += -Wall -g -Wno-pointer-sign -Wmissing-declarations\
 			  -I include/ -Werror -DAFL_PATH=\"$(HELPER_PATH)\" \
 			  -DBIN_PATH=\"$(BIN_PATH)\" -DDOC_PATH=\"$(DOC_PATH)\"
-# -Wmissing-declarations
 
 AFL_FUZZ_FILES = $(wildcard src/afl-fuzz*.c)
 
diff --git a/src/third_party/libradamsa/libradamsa.c b/src/third_party/libradamsa/libradamsa.c
index b40e567..5de597f 100644
--- a/src/third_party/libradamsa/libradamsa.c
+++ b/src/third_party/libradamsa/libradamsa.c
@@ -30758,7 +30758,7 @@
       exit(4);
    memend = memstart + nwords - MEMPAD;
 }
-
+/*
 static int secondary(int nargs, char **argv) {
    word *prog;
    int rval, nobjs=0, nwords=0;
@@ -30774,6 +30774,7 @@
    }
    return 127;
 }
+*/
 
 void radamsa_init(void) {
    int nobjs=0, nwords=0;
@@ -30800,6 +30801,7 @@
    return res;
 }
 
+/*
 static size_t list_length(word lispval) {
    size_t l = 0;
    while(lispval != INULL) {
@@ -30808,6 +30810,7 @@
    }
    return l;
 }
+*/
 
 static size_t copy_list(uint8_t *ptr, word lispval, size_t max) {
    size_t n = 0;