From 43ecfce7d20360a5fdc53e5ced266eccc8723242 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Fri, 29 May 2020 14:41:05 -0700 Subject: blas code update --- include/u.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/u.h') diff --git a/include/u.h b/include/u.h index 3fafcda..8044fe0 100644 --- a/include/u.h +++ b/include/u.h @@ -51,6 +51,7 @@ typedef int error; #endif #define arrlen(Array) (sizeof(Array) / sizeof((Array)[0])) +#define arrend(Array) ((Array) + arrlen(Array)) #define MAX(x, y) ((x) >= (y) ? (x) : (y)) #define MIN(x, y) ((x) < (y) ? (x) : (y)) -- cgit v1.2.1