portablity fix: s/__inline__/inline/
diff --git a/cipher-aesctr.c b/cipher-aesctr.c
index 850bbf7..5957f4b 100644
--- a/cipher-aesctr.c
+++ b/cipher-aesctr.c
@@ -27,7 +27,7 @@
  * the counter is of size 'len' bytes and stored in network-byte-order.
  * (LSB at ctr[len-1], MSB at ctr[0])
  */
-static __inline__ void
+static inline void
 aesctr_inc(u8 *ctr, u32 len)
 {
 	ssize_t i;