From: otto Date: Thu, 7 Dec 2017 06:34:05 +0000 (+0000) Subject: zap a few stray backslashes from the time thesse two were #defines; from X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9e55baca979a2df7b75e41cd738a559420896dfd;p=openbsd zap a few stray backslashes from the time thesse two were #defines; from Ilya Kaliman --- 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());