From: Paul Eggert Date: Thu, 21 Nov 2002 05:24:53 +0000 (+0000) Subject: Do not include . X-Git-Tag: BISON-1_875~218 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/87aabbff99bf8a90cb4fa2c495f40528337112af?ds=inline Do not include . (verify): New macro. --- diff --git a/src/system.h b/src/system.h index e297f608..1b2459e0 100644 --- a/src/system.h +++ b/src/system.h @@ -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 -#include +/* 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