mirror of
https://github.com/openharmony/third_party_musl2.git
synced 2026-07-01 10:25:07 -04:00
a7a91cd947
isolate changes, keep orignal musl sources clean. Signed-off-by: Caoruihong <crh.cao@huawei.com> Change-Id: Id7f3a5109771f93d397e30febba36e09ddaf4f36
26 lines
491 B
C++
26 lines
491 B
C++
#ifndef _STDDEF_H
|
|
#define _STDDEF_H
|
|
|
|
#ifdef __cplusplus
|
|
#define NULL 0L
|
|
#else
|
|
#define NULL ((void*)0)
|
|
#endif
|
|
|
|
#define __NEED_ptrdiff_t
|
|
#define __NEED_size_t
|
|
#define __NEED_wchar_t
|
|
#if __STDC_VERSION__ >= 201112L || __cplusplus >= 201103L
|
|
#define __NEED_max_align_t
|
|
#endif
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
#if __GNUC__ > 3
|
|
#define offsetof(type, member) __builtin_offsetof(type, member)
|
|
#else
|
|
#define offsetof(type, member) ((size_t)( (char *)&(((type *)0)->member) - (char *)0 ))
|
|
#endif
|
|
|
|
#endif
|