forked from len0rd/rockbox
Moved definition of TRUE and FALSE to types.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@136 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6886103dd9
commit
fa07b41717
2 changed files with 4 additions and 4 deletions
|
@ -21,9 +21,6 @@
|
||||||
#define __SYSTEM_H__
|
#define __SYSTEM_H__
|
||||||
#include <sh7034.h>
|
#include <sh7034.h>
|
||||||
|
|
||||||
#define TRUE 1
|
|
||||||
#define FALSE 0
|
|
||||||
|
|
||||||
#define KB *1024
|
#define KB *1024
|
||||||
#define MB *1024 KB
|
#define MB *1024 KB
|
||||||
#define GB *1024 MB
|
#define GB *1024 MB
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
#ifndef __TYPES_H
|
#ifndef __TYPES_H
|
||||||
#define __TYPES_H
|
#define __TYPES_H
|
||||||
|
|
||||||
typedef unsigned char bool;
|
typedef unsigned int bool;
|
||||||
|
|
||||||
|
#define TRUE 1
|
||||||
|
#define FALSE 0
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue