diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-05-15 10:59:30 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-05-15 10:59:30 +0000 |
commit | 4365040b802cae8f70e1ea7ab12e7e0b1bf991ee (patch) | |
tree | 792ca3a6399cf3f89db2b74d7141e11e300310fd | |
parent | 96bc46037fe27ee04e12bd9871f5f63c54e4bb43 (diff) |
normalize() cannot be inline and extern at the same time; prompted by
jsg@
-rw-r--r-- | usr.bin/dc/bcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c index 2f76e879e01..b8a46f2f3d8 100644 --- a/usr.bin/dc/bcode.c +++ b/usr.bin/dc/bcode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcode.c,v 1.40 2009/10/27 23:59:37 deraadt Exp $ */ +/* $OpenBSD: bcode.c,v 1.41 2010/05/15 10:59:29 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -410,7 +410,7 @@ split_number(const struct number *n, BIGNUM *i, BIGNUM *f) } } -__inline void +void normalize(struct number *n, u_int s) { scale_number(n->number, s - n->scale); |