Skip to content
Snippets Groups Projects
Commit 0ca97d82 authored by zwelch's avatar zwelch
Browse files

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
parent 86e4324f
No related branches found
No related tags found
No related merge requests found
...@@ -42,8 +42,8 @@ typedef unsigned short uint16_t; ...@@ -42,8 +42,8 @@ typedef unsigned short uint16_t;
typedef unsigned int uint32_t; typedef unsigned int uint32_t;
#endif #endif
#ifndef u64 #ifndef uint64_t
typedef unsigned long long u64; typedef unsigned long long uint64_t;
#endif #endif
typedef struct jtag_tap_s jtag_tap_t; typedef struct jtag_tap_s jtag_tap_t;
......
...@@ -28,7 +28,7 @@ struct command_context_s; ...@@ -28,7 +28,7 @@ struct command_context_s;
typedef struct trace_point_s typedef struct trace_point_s
{ {
uint32_t address; uint32_t address;
u64 hit_counter; uint64_t hit_counter;
} trace_point_t; } trace_point_t;
typedef struct trace_s typedef struct trace_s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment