From 2bcbc27e53b2c2216cddc807513e183e4c8b12c3 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 27 Jun 2024 20:34:46 -0400 Subject: [PATCH] Revert "Explicitly link to unshield library for now" This reverts commit b7e5f914d50fecee08a9d07234f54d8839586305. --- src/installer.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/installer.rs b/src/installer.rs index 424746c..6336947 100644 --- a/src/installer.rs +++ b/src/installer.rs @@ -37,7 +37,6 @@ struct Unshield { _private: [u8; 0], } -#[link(name = "unshield")] extern "C" { fn unshield_open(filename: *const c_char) -> *mut Unshield; fn unshield_close(unshield: *mut Unshield);