summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarkus Grüneis <gimpf@anylike.org>2010-05-30 19:00:53 +0000
committerMarkus Grüneis <gimpf@anylike.org>2010-05-30 19:00:53 +0000
commit12988477f9ca9eac43763471a3df3c01823e203d (patch)
treeb6f0c0f31aa3b3617929cc7d91e48d9173ee5f1f /tools
parentescaping spaces in configure output (diff)
replaced own u_int types with types from stdint.h
Diffstat (limited to 'tools')
-rw-r--r--tools/bin2c.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bin2c.lua b/tools/bin2c.lua
index c473832..8a61549 100644
--- a/tools/bin2c.lua
+++ b/tools/bin2c.lua
@@ -54,9 +54,9 @@ io.write([=[
#include "datatypes.h"
-const u_int8_t ]=] , c_var_name, [=[[]={
+const uint8_t ]=] , c_var_name, [=[[]={
]=], dump(content), [=[
};
-const u_int32_t ]=] , c_var_name, [=[_len = sizeof(]=] , c_var_name, [=[);
+const uint32_t ]=] , c_var_name, [=[_len = sizeof(]=] , c_var_name, [=[);
]=])