1
0
mirror of https://github.com/bspeice/qadapt synced 2025-07-01 13:56:14 -04:00

Start work on a procedural macro

Turns out the system still needs some work.
This commit is contained in:
2018-11-06 23:04:26 -05:00
parent 16a0238dc5
commit 18d1c3e6d1
6 changed files with 50 additions and 2 deletions

View File

@ -1,9 +1,13 @@
extern crate backtrace;
extern crate libc;
extern crate qadapt_macro;
#[macro_use]
extern crate log;
extern crate spin;
// Re-export the proc macros to use by other code
pub use qadapt_macro::*;
use backtrace::Backtrace;
use libc::c_void;
use libc::free;