diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-12 19:46:04 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-12 19:46:04 +0200 |
| commit | 11da9d23fe323ce452fcd04a10a0ddf78eaa63ea (patch) | |
| tree | 7ab4d162b2a944214bb01d498d5a0400dec031a0 /utils/imxtools/hwemul/dev/stdint.h | |
| parent | 3f4eeb850e91fd026a99f2b17bd7e0837f112bb5 (diff) | |
| download | rockbox-11da9d23fe323ce452fcd04a10a0ddf78eaa63ea.zip rockbox-11da9d23fe323ce452fcd04a10a0ddf78eaa63ea.tar.gz rockbox-11da9d23fe323ce452fcd04a10a0ddf78eaa63ea.tar.bz2 rockbox-11da9d23fe323ce452fcd04a10a0ddf78eaa63ea.tar.xz | |
imxtools: move hwemul to its own directory
The hwemul is only partly imx specific: the stub is stmp specific
but could be ported to other targets, the computer side and the
protocol are mostly stmp independent (or should be).
Change-Id: If88febffe591b0de86ea11cb740455ba20ddc401
Diffstat (limited to 'utils/imxtools/hwemul/dev/stdint.h')
| -rw-r--r-- | utils/imxtools/hwemul/dev/stdint.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/utils/imxtools/hwemul/dev/stdint.h b/utils/imxtools/hwemul/dev/stdint.h deleted file mode 100644 index 4fe3702..0000000 --- a/utils/imxtools/hwemul/dev/stdint.h +++ /dev/null @@ -1,38 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2005 by Dave Chapman - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ****************************************************************************/ - -#ifndef __STDINT_H__ -#define __STDINT_H__ - -typedef signed char int8_t; -typedef unsigned char uint8_t; -typedef short int16_t; -typedef unsigned short uint16_t; -typedef long int32_t; -typedef unsigned long uint32_t; -typedef char bool; - -#define true 1 -#define false 0 - -#define NULL (void *)0 - -#endif /* __STDINT_H__ */ |