Cleanup: apply `include-what-you-use` guideline for `mbstate_t`
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Tue, 3 Dec 2019 20:47:24 +0000 (15:47 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 13 Feb 2020 17:10:43 +0000 (12:10 -0500)
commit9f18918b747c4787f291fdcdd67bb1f21ee8efce
tree731af008822e8331c1373e2a1325e1d5aab43b78
parent2786d9d5363fbe75af13e54b0a9512c96e7a923b
Cleanup: apply `include-what-you-use` guideline for `mbstate_t`

I saw that some files use the `mbstate_t` type but there are not including
a header for it. The `mbstate_t` type is defined by the following header:
  <wchar.h>

So, to follow the best practice of including what is used in a file, I
added `#include <wchar.h>` in files using `mbstate_t`.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I103d144ede1a8488d2662d3b8ba5337accafda99
snprintf/various.h
snprintf/vfprintf.c
snprintf/wcio.h
This page took 0.024514 seconds and 4 git commands to generate.