zap a few stray backslashes from the time thesse two were #defines; from
authorotto <otto@openbsd.org>
Thu, 7 Dec 2017 06:34:05 +0000 (06:34 +0000)
committerotto <otto@openbsd.org>
Thu, 7 Dec 2017 06:34:05 +0000 (06:34 +0000)
Ilya Kaliman

usr.bin/dc/mem.c

index 2fc83d2..7359d48 100644 (file)
@@ -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());