Follow include-what-you-use for our custom iswdigit()

Commit fe63c8ad3 (Shadow/override iswdigit instead of changing it at
individual call sites, 2021-10-04) added our own implementation of
iswdigit() to common.h. The "include-what-you-use" rule means that
files that use iswdigit() should now include common.h. Do that.
This commit is contained in:
Johannes Altmanninger 2021-10-05 21:27:10 +02:00
parent 9d38553384
commit 4c598b504f

View file

@ -4,6 +4,7 @@
#include <cstring> #include <cstring>
#include "common.h"
#include "fds.h" #include "fds.h"
#include "history.h" #include "history.h"
#include "path.h" #include "path.h"