Skip to content

Commit b1cad69

Browse files
author
christos
committed
remove always inline because new gcc bitches.
1 parent 8a45cf7 commit b1cad69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/libc/gen/arc4random.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $NetBSD: arc4random.c,v 1.20 2012/08/20 21:38:09 dsl Exp $ */
1+
/* $NetBSD: arc4random.c,v 1.21 2013/10/17 23:56:17 christos Exp $ */
22
/* $OpenBSD: arc4random.c,v 1.6 2001/06/05 05:05:38 pvalchev Exp $ */
33

44
/*
@@ -27,7 +27,7 @@
2727

2828
#include <sys/cdefs.h>
2929
#if defined(LIBC_SCCS) && !defined(lint)
30-
__RCSID("$NetBSD: arc4random.c,v 1.20 2012/08/20 21:38:09 dsl Exp $");
30+
__RCSID("$NetBSD: arc4random.c,v 1.21 2013/10/17 23:56:17 christos Exp $");
3131
#endif /* LIBC_SCCS and not lint */
3232

3333
#include "namespace.h"
@@ -152,7 +152,7 @@ arc4_stir(struct arc4_stream *as)
152152
as->stirred = 1;
153153
}
154154

155-
static __always_inline uint8_t
155+
static __inline uint8_t
156156
arc4_getbyte_ij(struct arc4_stream *as, uint8_t *i, uint8_t *j)
157157
{
158158
uint8_t si, sj;

0 commit comments

Comments
 (0)