diff options
author | 2017-12-07 06:34:05 +0000 | |
---|---|---|
committer | 2017-12-07 06:34:05 +0000 | |
commit | 9e55baca979a2df7b75e41cd738a559420896dfd (patch) | |
tree | 64a821660624b1bb6b9d9b4ca72f6e61af37f97d | |
parent | Now that we have RB_NFIND, the canacar's trick with RB_INSERT+RB_NEXT (diff) | |
download | wireguard-openbsd-9e55baca979a2df7b75e41cd738a559420896dfd.tar.xz wireguard-openbsd-9e55baca979a2df7b75e41cd738a559420896dfd.zip |
zap a few stray backslashes from the time thesse two were #defines; from
Ilya Kaliman
-rw-r--r-- | usr.bin/dc/mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/dc/mem.c b/usr.bin/dc/mem.c index 2fc83d29c38..7359d48e7ae 100644 --- a/usr.bin/dc/mem.c +++ b/usr.bin/dc/mem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mem.c,v 1.7 2015/02/16 20:53:34 jca Exp $ */ +/* $OpenBSD: mem.c,v 1.8 2017/12/07 06:34:05 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -90,14 +90,14 @@ bstrdup(const char *p) } void -bn_check(int x) \ +bn_check(int x) { if (x == 0) err(1, "big number failure %lx", ERR_get_error()); } void -bn_checkp(const void *p) \ +bn_checkp(const void *p) { if (p == NULL) err(1, "allocation failure %lx", ERR_get_error()); |