stdio.h: use NULL definition from stddef.h

This commit is contained in:
Xavier Del Campo Romero 2021-10-24 02:21:17 +02:00
parent 17832b2bed
commit bea2c98a06
1 changed files with 1 additions and 5 deletions

View File

@ -19,6 +19,7 @@
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C"
@ -31,11 +32,6 @@ extern "C"
#define EOF -1
/* NULL */
#ifndef NULL
#define NULL (void*)0
#endif
enum stdio_directions
{
STDIO_DIRECTION_BIOS,