17 lines
271 B
C
17 lines
271 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#ifndef UKERNEL_STDDEF_H
|
|
# define UKERNEL_STDDEF_H
|
|
|
|
|
|
/* constants */
|
|
# ifndef NULL
|
|
# define NULL ((void *)0)
|
|
# endif
|
|
|
|
#endif /* !UKERNEL_STDDEF_H */
|