* lib/bcp47.c: Include <stdlib.h>.
(bcp47_to_xpg): Verify an invariant through an abort().
+2024-12-12 Bruno Haible <bruno@clisp.org>
+
+ bcp47: Silence a gcc 14 -Wanalyzer-infinite-loop warning.
+ * lib/bcp47.c: Include <stdlib.h>.
+ (bcp47_to_xpg): Verify an invariant through an abort().
+
2024-12-11 Paul Eggert <eggert@cs.ucla.edu>
doc: isdigit and isxdigit are locale-independent
/* Specification. */
#include "bcp47.h"
+#include <stdlib.h>
#include <string.h>
#include "c-ctype.h"
}
}
}
+ else
+ abort ();
}
}