You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
Co-authored-by: Louis <35883445+louist103@users.noreply.github.com> Co-authored-by: Nicholas Estelami <NEstelami@users.noreply.github.com> Co-authored-by: Random06457 <28494085+Random06457@users.noreply.github.com>
16 lines
328 B
C
16 lines
328 B
C
#ifndef LIBC_STDDEF_H
|
|
#define LIBC_STDDEF_H
|
|
|
|
#include "PR/ultratypes.h"
|
|
#include <stddef.h>
|
|
#if 0
|
|
typedef s32 ptrdiff_t;
|
|
|
|
#ifdef __GNUC__
|
|
#define offsetof(structure, member) __builtin_offsetof (structure, member)
|
|
#else
|
|
#define offsetof(structure, member) ((size_t)&(((structure*)0)->member))
|
|
#endif
|
|
#endif
|
|
#endif /* STDDEF_H */
|