bun_uws_sys 0.1.0

A Rust-native programmable browser runtime built on Servo and SpiderMonkey
1
2
3
4
5
6
7
8
9
#ifndef _GCC_COMPAT_H
#define _GCC_COMPAT_H

// GCC compat: __has_feature is Clang-only. Define as 0 for GCC builds.
#ifndef __has_feature
#define __has_feature(x) 0
#endif

#endif