From 579c2f34d9e394ec38c5ec3f792056f3118104d8 Mon Sep 17 00:00:00 2001 From: kamkow1 Date: Mon, 2 Jun 2025 12:39:50 +0200 Subject: [PATCH] alias nil to NULL --- gebs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gebs.h b/gebs.h index 3ba1ccb..1ac705b 100644 --- a/gebs.h +++ b/gebs.h @@ -100,7 +100,7 @@ int main(int argc, char ** argv) // Types // ---------------------------------------------------------------------------- -#define nil ((void *)0) +#define nil NULL typedef unsigned char uchar; typedef unsigned short ushort;