-/*-------------------------------.
-| Create a new array of N errs. |
-`-------------------------------*/
-
-#define ERRS_ALLOC(Nerrs) \
- (errs_t *) xcalloc ((unsigned) (sizeof (errs_t) \
- + (Nerrs - 1) * sizeof (short)), 1)
-
-
-errs_t *
-errs_new (int n)
-{
- errs_t *res = ERRS_ALLOC (n);
- res->nerrs = n;
- return res;
-}
-
+/*---------------------------------.
+| Create a new array of NUM errs. |
+`---------------------------------*/