remove unneeded linker args to make it work on stable

This commit is contained in:
Robin Appelman 2019-03-18 17:11:45 +01:00
commit c5451b09db
4 changed files with 1 additions and 5 deletions

View file

@ -1,7 +1,6 @@
use libc::*;
use std::ffi::CString;
#[link_args = "-Wl,-undefined,dynamic_lookup"]
extern {
pub fn php_info_print_table_start();
pub fn php_info_print_table_row(num_cols: c_int, ...) -> c_void;

View file

@ -1,6 +1,5 @@
#![allow(dead_code)]
#![allow(unused_variables)]
#![feature(link_args)]
extern crate libc;