nasm_build_assert() -> nasm_static_assert()

The C11 standard calls this concept a static assert, so go with that
terminology.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
diff --git a/asm/parser.c b/asm/parser.c
index 23183de..5fc4667 100644
--- a/asm/parser.c
+++ b/asm/parser.c
@@ -492,7 +492,7 @@
     if (i == TOKEN_EOS)
         goto fail;
 
-    nasm_build_assert(P_none == 0);
+    nasm_static_assert(P_none == 0);
     memset(result->prefixes, P_none, sizeof(result->prefixes));
     result->times = 1L;