diff --git a/src/header/strings/mod.rs b/src/header/strings/mod.rs
index 2f4ab0951350d2347aba600ad2aa4752ac55c33f..45981bc7067de51e2e45d6be8396e7ae188650a5 100644
--- a/src/header/strings/mod.rs
+++ b/src/header/strings/mod.rs
@@ -77,7 +77,7 @@ pub extern "C" fn ffs(i: c_int) -> c_int {
 }
 
 /// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/ffs.html>.
-// #[no_mangle]
+#[no_mangle]
 pub extern "C" fn ffsl(i: c_long) -> c_int {
     if i == 0 {
         return 0;
@@ -86,7 +86,7 @@ pub extern "C" fn ffsl(i: c_long) -> c_int {
 }
 
 /// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/ffs.html>.
-// #[no_mangle]
+#[no_mangle]
 pub extern "C" fn ffsll(i: c_longlong) -> c_int {
     if i == 0 {
         return 0;