ack/lang/cem/libcc.ansi/headers/stddef.h
2018-06-23 18:54:40 +02:00

23 lines
501 B
C

/*
* stddef.h - common definitions
*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Id$ */
#ifndef _STDDEF_H
#define _STDDEF_H
#include <ack/config.h>
#include <stdint.h>
#define NULL 0
#define offsetof(type, ident) ((size_t) (unsigned long) &((type *)0)->ident)
typedef char wchar_t; /* type of a wide character */
typedef long off_t; /* type of a position offset */
#endif