Skip to main content

alsa_sys/
lib.rs

1#![allow(non_camel_case_types)]
2#![allow(non_snake_case)]
3#![allow(non_upper_case_globals)]
4#![no_std]
5
6use libc::{FILE, pid_t, pollfd, timespec, timeval};
7
8#[cfg(feature = "use-bindgen")]
9include!(concat!(env!("OUT_DIR"), "/generated.rs"));
10
11#[cfg(not(feature = "use-bindgen"))]
12include!("generated.rs");