1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Fixed header #2110

This commit is contained in:
polluks2 2023-05-12 02:32:14 +02:00 committed by GitHub
parent 79018fd424
commit 5d9306fed3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,12 @@ typedef unsigned size_t;
#define _HAVE_size_t
#endif
/* NULL pointer */
#ifndef _HAVE_NULL
#define NULL ((void *) 0)
#define _HAVE_NULL
#endif
/* Standard exit codes */
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
@ -167,6 +173,3 @@ int __fastcall__ putenv (char* s);
/* End of stdlib.h */
#endif