diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-11-04 11:27:50 +0100 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-11-09 08:46:52 +0100 |
commit | 37262fb2288c38553cc8c8f36e59782273c83e7d (patch) | |
tree | 8107afeac457b2ffcc2f839df407f5857a2cf37c /src/platform/ios | |
parent | 439d25168e0145bb563c2675ce490c521448f4ba (diff) | |
download | glutin-37262fb2288c38553cc8c8f36e59782273c83e7d.tar.gz glutin-37262fb2288c38553cc8c8f36e59782273c83e7d.zip |
Remove public exports of gl_common and libc
Diffstat (limited to 'src/platform/ios')
-rw-r--r-- | src/platform/ios/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/platform/ios/mod.rs b/src/platform/ios/mod.rs index 95fa7e1..aeaebc3 100644 --- a/src/platform/ios/mod.rs +++ b/src/platform/ios/mod.rs @@ -1,5 +1,4 @@ #![cfg(target_os = "ios")] -use libc::c_void; use GlAttributes; use CreationError; @@ -33,7 +32,7 @@ impl HeadlessContext { } /// See the docs in the crate root file. - pub fn get_proc_address(&self, _addr: &str) -> *const c_void { + pub fn get_proc_address(&self, _addr: &str) -> *const () { unimplemented!() } |