Minor stuff

This commit is contained in:
Julian Barathieu 2018-12-30 22:42:19 +01:00
parent 31702521b1
commit 680ca2a52c
1 changed files with 6 additions and 6 deletions

View File

@ -15,17 +15,17 @@
#endif
#if !defined(TRUE) && !defined(FALSE)
# define TRUE 1
# define FALSE 0
# define TRUE (1)
# define FALSE (0)
#endif
#ifdef _OSK_SOURCE
# define YES 1
# define NO 0
# define YES (1)
# define NO (0)
#endif
#ifndef NULL
# define NULL ((void*)0)
# define NULL ((void *)0)
#endif
#ifndef PACKED
@ -42,7 +42,7 @@
#endif
#ifndef INITOK
# define INITOK 0xCAFEBABE
# define INITOK ((unsigned int)0xCAFEBABE)
#endif
#ifdef _KALEID_KERNEL