parser-c 0.3.0

Macros for parser-c.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Original file: "Builtin.hs"
// File auto-generated using Corollary.

#[macro_use]
use corollary_support::*;
use data::ident::Ident;

// NOTE: These imports are advisory. You probably need to change them to support Rust.
// use Language::C::Data::Ident;
// use Ident;

pub fn builtinTypeNames() -> Vec<Ident> {
    vec![Ident::builtin("__builtin_va_list".into())]
}