From 9e55baca979a2df7b75e41cd738a559420896dfd Mon Sep 17 00:00:00 2001 From: otto Date: Thu, 7 Dec 2017 06:34:05 +0000 Subject: [PATCH] zap a few stray backslashes from the time thesse two were #defines; from Ilya Kaliman --- usr.bin/dc/mem.c | 6 +++--- 1 file 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 @@ -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()); -- 2.20.1