mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-12 18:05:57 +00:00
d9ebdd10df
This includes the new header <stdalign.h>, the new function aligned_alloc(), and the new typedef max_align_t.
34 lines
588 B
C
34 lines
588 B
C
/****************************************************************
|
|
*
|
|
* stddef.h - Standard Language Additions
|
|
*
|
|
* February 1989
|
|
* Mike Westerfield
|
|
*
|
|
* Copyright 1989, 1993
|
|
* Byte Works, Inc.
|
|
*
|
|
****************************************************************/
|
|
|
|
#ifndef __stddef__
|
|
#define __stddef__
|
|
|
|
#ifndef NULL
|
|
#define NULL (void *) 0L
|
|
#endif
|
|
|
|
typedef long ptrdiff_t;
|
|
|
|
#ifndef __size_t__
|
|
#define __size_t__ 1
|
|
typedef unsigned long size_t;
|
|
#endif
|
|
|
|
typedef long max_align_t;
|
|
|
|
typedef unsigned short wchar_t;
|
|
|
|
#define offsetof(type,member) ((size_t) (&(((type *)0L)->member)))
|
|
|
|
#endif
|