X-Git-Url: http://git.pond.sub.org/?p=empserver;a=blobdiff_plain;f=include%2Fmisc.h;h=4c2ca620cdeac6b01d3512cfeb90dd6f176b2a17;hp=29a3671c78c8c3bda5f91675649c583a5d4b12fa;hb=HEAD;hpb=80bf4ec34b6ead7ba9649da68e4ae47d28b58701 diff --git a/include/misc.h b/include/misc.h index 29a3671c7..4c2ca620c 100644 --- a/include/misc.h +++ b/include/misc.h @@ -1,6 +1,6 @@ /* * Empire - A multi-player, client/server Internet based war game. - * Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak, + * Copyright (C) 1986-2021, Dave Pare, Jeff Bailey, Thomas Ruschak, * Ken Stevens, Steve McClure, Markus Armbruster * * Empire is free software: you can redistribute it and/or modify @@ -29,7 +29,7 @@ * * Known contributors to this file: * Doug Hay, 1998 - * Markus Armbruster, 2004-2014 + * Markus Armbruster, 2004-2020 */ #ifndef MISC_H @@ -52,7 +52,7 @@ #endif #ifndef bit -#define bit(x) (1<<(x)) +#define bit(x) (1U<<(x)) #endif #define minutes(x) (60*(x)) @@ -82,6 +82,18 @@ extern void (*oops_handler)(void); #define BUILD_ASSERT_ONE(cond) \ (sizeof(char[1 - 2 * !(cond)])) +/* + * Assert constant expression @cond. + * If @cond is zero, force a compilation error. + */ +#define BUILD_ASSERT(cond) \ + ((void)BUILD_ASSERT_ONE(cond)) + +/* + * Number of elements in ARRAY. + */ +#define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0])) + void exit_nomem(void) ATTRIBUTE((noreturn)); /* return codes from command routines */ @@ -96,8 +108,4 @@ extern char *ugetstring(char *prompt, char buf[]); extern char *prbuf(char *format, ...) ATTRIBUTE((format (printf, 1, 2))); -#define AGREE_FREE 0 -#define AGREE_PROPOSED 1 -#define AGREE_SIGNED 2 - #endif