mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 23:55:06 -04:00
20 lines
243 B
C
20 lines
243 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#ifndef __cplusplus
|
|
#define NULL ((void*)0)
|
|
#else
|
|
#define NULL nullptr
|
|
#endif
|
|
|
|
#if 0
|
|
#define size_t unsigned long
|
|
#define ssize_t long
|
|
|
|
#endif
|
|
|
|
//typedef unsigned long size_t;
|
|
//typedef long ssize_t;
|
|
|
|
#endif
|