]> git.saurik.com Git - bison.git/blobdiff - src/system.h
Do not include <assert.h>.
[bison.git] / src / system.h
index e297f608cacdde8aa4401339e94a6c2599f16128..1b2459e03028255e0d83b761c80139920b42781a 100644 (file)
@@ -1,4 +1,4 @@
-/* system-dependent definitions for Bison.
+/* System-dependent definitions for Bison.
    Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -41,7 +41,8 @@ char *alloca ();
 
 #include <stdio.h>
 
-#include <assert.h>
+/* Verify a requirement at compile-time (unlike assert, which is runtime).  */
+#define verify(name, assertion) struct name {char name[(assertion) ? 1 : -1];}
 
 #if HAVE_SYS_TYPES_H
 # include <sys/types.h>