summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2010-05-15 10:59:29 +0000
committerotto <otto@openbsd.org>2010-05-15 10:59:29 +0000
commit3f2eefc80258d3d8b0cecafc2884038d8ac70f4d (patch)
tree6a667049dbf7238243e37e461b98dc9432dda42e
parentgrow /usr/local more at the cost of /home; ok krw@ (diff)
downloadwireguard-openbsd-3f2eefc80258d3d8b0cecafc2884038d8ac70f4d.tar.xz
wireguard-openbsd-3f2eefc80258d3d8b0cecafc2884038d8ac70f4d.zip
normalize() cannot be inline and extern at the same time; prompted by
jsg@
-rw-r--r--usr.bin/dc/bcode.c4
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);