mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
8888fb2ec1
Co-authored-by: PurpleHato <linkvssangoku.jr@gmail.com> Co-authored-by: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Co-authored-by: louist103 <35883445+louist103@users.noreply.github.com> Co-authored-by: PurpleHato <linkvssangoku.jr@gmail.com> Co-authored-by: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com>
22 lines
274 B
C
22 lines
274 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#include <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
|