summaryrefslogtreecommitdiff
path: root/cipher-aesctr.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2015-02-23 21:50:34 -0800
committerTim Rice <tim@multitalents.net>2015-02-23 21:50:34 -0800
commit1221b22023dce38cbc90ba77eae4c5d78c77a5e6 (patch)
treee7b5efb29e4ca27b81d3cc7fcc1ac4dd5a143a94 /cipher-aesctr.c
parent4c356308a88d309c796325bb75dce90ca16591d5 (diff)
portablity fix: s/__inline__/inline/
Diffstat (limited to 'cipher-aesctr.c')
-rw-r--r--cipher-aesctr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher-aesctr.c b/cipher-aesctr.c
index 850bbf7db..5957f4bb4 100644
--- a/cipher-aesctr.c
+++ b/cipher-aesctr.c
@@ -27,7 +27,7 @@
27 * the counter is of size 'len' bytes and stored in network-byte-order. 27 * the counter is of size 'len' bytes and stored in network-byte-order.
28 * (LSB at ctr[len-1], MSB at ctr[0]) 28 * (LSB at ctr[len-1], MSB at ctr[0])
29 */ 29 */
30static __inline__ void 30static inline void
31aesctr_inc(u8 *ctr, u32 len) 31aesctr_inc(u8 *ctr, u32 len)
32{ 32{
33 ssize_t i; 33 ssize_t i;