* lib-src/etags.c [!DEBUG]: Do not define NDEBUG,
as that’s conf_post.h’s job now.
[NDEBUG]: Do not redefine ‘assert’, as that works around
ancient bugs (e.g., sunos4 pcc) that don’t matter any more,
as can be seen that other Emacs source files that successfully
use assert.h without this workaround.
# undef DEBUG
# define DEBUG true
#else
-# define DEBUG false
-# ifndef NDEBUG
-# define NDEBUG /* disable assert */
-# endif
+# define DEBUG false
#endif
#include <config.h>
#include <c-strcase.h>
#include <assert.h>
-#ifdef NDEBUG
-# undef assert /* some systems have a buggy assert.h */
-# define assert(x) ((void) 0)
-#endif
-
#include <getopt.h>
#include <regex.h>