linux/bdf: another way to figure out number of arguments to disassemble() - closes #535
diff --git a/linux/bfd.c b/linux/bfd.c
index 99db227..b18c8bb 100644
--- a/linux/bfd.c
+++ b/linux/bfd.c
@@ -58,15 +58,6 @@
     asymbol** dsyms;
 } bfd_t;
 
-/* INFO: binutils (libbfd, libopcode) has an unstable public interface. */
-/*
- * This is probably the only define which was added with binutils 2.29, so we use
- * it, do decide which disassembler() prototype from dis-asm.h to use.
- */
-#if defined(FOR_EACH_DISASSEMBLER_OPTION)
-#define _HF_BFD_GE_2_29
-#endif /* defined(FOR_EACH_DISASSEMBLER_OPTION) */
-
 static pthread_mutex_t arch_bfd_mutex = PTHREAD_MUTEX_INITIALIZER;
 
 static bool arch_bfdInit(pid_t pid, bfd_t* bfdParams) {