1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-05 01:25:44 +00:00

Merge pull request #1826 from alejandro-colomar/master

Make NULL conform to POSIX
This commit is contained in:
Bob Andrews
2022-08-11 01:10:16 +02:00
committed by GitHub

View File

@@ -54,7 +54,7 @@ typedef unsigned size_t;
/* NULL pointer */
#ifndef _HAVE_NULL
#define NULL 0
#define NULL ((void *) 0)
#define _HAVE_NULL
#endif