summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/stdint.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-07 19:05:13 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-07 19:05:13 +0100
commitff6ffe5677e080ad25eb31d3b8f55e4265069a8b (patch)
tree6dfc9a20fe21a6c56cbf1e35f4ba23fd4f5b3fd8 /src/target/firmware/include/stdint.h
parent3e9d0ba838419888b0edd282f80667bc6f0a8a39 (diff)
import byte-ordering defines/macros from linux
Diffstat (limited to 'src/target/firmware/include/stdint.h')
-rw-r--r--src/target/firmware/include/stdint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/target/firmware/include/stdint.h b/src/target/firmware/include/stdint.h
index b3f67007..7b1400ab 100644
--- a/src/target/firmware/include/stdint.h
+++ b/src/target/firmware/include/stdint.h
@@ -13,4 +13,7 @@ typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
+typedef long long int int64_t;
+typedef unsigned long long int uint64_t;
+
#endif