1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-03 15:29: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
commit 38c4449ab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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