mirror of
https://github.com/cc65/cc65.git
synced 2024-11-15 11:05:56 +00:00
Fixed header #2110
This commit is contained in:
parent
79018fd424
commit
5d9306fed3
@ -44,6 +44,12 @@ typedef unsigned size_t;
|
|||||||
#define _HAVE_size_t
|
#define _HAVE_size_t
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* NULL pointer */
|
||||||
|
#ifndef _HAVE_NULL
|
||||||
|
#define NULL ((void *) 0)
|
||||||
|
#define _HAVE_NULL
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Standard exit codes */
|
/* Standard exit codes */
|
||||||
#define EXIT_SUCCESS 0
|
#define EXIT_SUCCESS 0
|
||||||
#define EXIT_FAILURE 1
|
#define EXIT_FAILURE 1
|
||||||
@ -167,6 +173,3 @@ int __fastcall__ putenv (char* s);
|
|||||||
|
|
||||||
/* End of stdlib.h */
|
/* End of stdlib.h */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user