RsBundle  Diff

Differences From Artifact [07a5c7baf8]:

  • File src/lib.rs — part of check-in [30e5f0f086] at 2017-03-16 20:51:51 on branch trunk — Use `const_cstr` for C-string literals. (user: fifr size: 1675)

To Artifact [1cb0895585]:

  • File src/lib.rs — part of check-in [d86db8c998] at 2017-03-17 09:28:35 on branch trunk — Remove dependency on `libc`, use `const_cstr` instead. (user: fifr size: 1694)

14
15
16
17
18
19
20

21
22
23
24
25
26
27
28
// along with this program.  If not, see  <http://www.gnu.org/licenses/>
//

//! Proximal bundle method implementation.

#[macro_use]
extern crate quick_error;

extern crate libc;
#[macro_use]
extern crate const_cstr;

#[macro_use]
extern crate log;

/// Type used for real numbers throughout the library.







>
|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// along with this program.  If not, see  <http://www.gnu.org/licenses/>
//

//! Proximal bundle method implementation.

#[macro_use]
extern crate quick_error;
#[macro_use]
extern crate const_cstr;
#[macro_use]
extern crate const_cstr;

#[macro_use]
extern crate log;

/// Type used for real numbers throughout the library.