mirror of
https://git.intege.rs/xlib/x.git
synced 2025-12-06 04:45:02 +00:00
12 lines
231 B
Rust
12 lines
231 B
Rust
#![feature(proc_macro_quote)]
|
|
#![feature(proc_macro_span)]
|
|
#![feature(custom_inner_attributes)]
|
|
|
|
use proc_macro::*;
|
|
|
|
mod sigscan;
|
|
|
|
#[proc_macro]
|
|
pub fn signature(input: TokenStream) -> TokenStream {
|
|
sigscan::macro_proc(input)
|
|
} |