traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / modutils / modutils.h
index 1cf4bba95693a3289d91b2061bb0d0f4310ce362..131a5087be158c215c36fe6bc04f0baa2181183c 100644 (file)
@@ -51,6 +51,12 @@ enum {
 #endif
 };
 
+#if ENABLE_FEATURE_INSMOD_TRY_MMAP
+void* FAST_FUNC try_to_mmap_module(const char *filename, size_t *image_size_p);
+#else
+# define try_to_mmap_module(filename, image_size) NULL
+#endif
+
 /* Return:
  * 0 on success,
  * -errno on open/read error,