Minor stuff
This commit is contained in:
parent
31702521b1
commit
680ca2a52c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue