Transform 'u64' to 'uint64_t'

- Replace '\([^_]\)u64' with '\1uint64_t'.


git-svn-id: svn://svn.berlios.de/openocd/trunk@2282 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-06-18 07:11:40 +00:00
parent 86e4324f1b
commit 0ca97d82d8
2 changed files with 3 additions and 3 deletions

View File

@@ -42,8 +42,8 @@ typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#endif
#ifndef u64
typedef unsigned long long u64;
#ifndef uint64_t
typedef unsigned long long uint64_t;
#endif
typedef struct jtag_tap_s jtag_tap_t;