* include/assert.h: (assert): Remove ; from end of definition

Thanks to: AJ Reins <tbisp@qwest.net>
This commit is contained in:
Earnie Boyd 2001-01-30 18:03:23 +00:00
parent 9cf3d9cbb5
commit 535964b7a4
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
Tue Jan 30 13:01:01 2001 Earnie Boyd <earnie@users.sourceforge.net>
* include/assert.h: (assert): Remove ; from end of definition
Thanks to: AJ Reins <tbisp@qwest.net>
Tue Jan 30 07:31:22 2001 Earnie Boyd <earnie@users.sourceforge.net>
* include/time.h: (CLOCKS_PER_SEC): Type cast the constant.

View File

@ -41,7 +41,7 @@ extern "C" {
/*
* If not debugging, assert does nothing.
*/
#define assert(x) ((void)0);
#define assert(x) ((void)0)
#else /* debugging enabled */