git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit ce0e6602951567967119e67a32abdccac6bcb3dd
parent b0c35d6b352378dd7ac7dd6126671ef9bb6c3d34
Author: Toxa <56631470+untoxa@users.noreply.github.com>
Date:   Thu, 16 Oct 2025 14:29:55 +0400

Merge pull request #822 from pokemonmasteraaron/feature/gbdk-lib-null-fix

gbdk-lib: Fixed definition of NULL in include/types.h
Diffstat:
Mgbdk-lib/include/types.h6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gbdk-lib/include/types.h b/gbdk-lib/include/types.h @@ -7,9 +7,9 @@ #include <asm/types.h> -/** Good 'ol NULL. - */ -#define NULL 0 +#ifndef NULL + #define NULL (void *)0 +#endif /** A 'false' value. */

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.