[ox/std] Change stddef to use cstddef if using stdlib

This commit is contained in:
Gary Talent 2018-04-30 21:08:00 -05:00
parent f64bcce564
commit ae484e22c7

View File

@ -8,6 +8,8 @@
#pragma once
#if !defined(offsetof)
#if OX_USE_STDLIB
#include <cstddef>
#else
#define offsetof(type, member) __builtin_offsetof(type, member)
#endif