Minor stuff
This commit is contained in:
parent
31702521b1
commit
680ca2a52c
|
@ -15,13 +15,13 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(TRUE) && !defined(FALSE)
|
#if !defined(TRUE) && !defined(FALSE)
|
||||||
# define TRUE 1
|
# define TRUE (1)
|
||||||
# define FALSE 0
|
# define FALSE (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _OSK_SOURCE
|
#ifdef _OSK_SOURCE
|
||||||
# define YES 1
|
# define YES (1)
|
||||||
# define NO 0
|
# define NO (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef INITOK
|
#ifndef INITOK
|
||||||
# define INITOK 0xCAFEBABE
|
# define INITOK ((unsigned int)0xCAFEBABE)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _KALEID_KERNEL
|
#ifdef _KALEID_KERNEL
|
||||||
|
|
Loading…
Reference in New Issue