Cleanup: fix includes in membuffer.h

Headers should not have to be included in a certain order.
Therefore include stdarg.h and stdio.h in membuffer.h, since
the latter uses FILE and va_list.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-05-30 18:05:25 +02:00 committed by Dirk Hohndel
parent e3304d8d7d
commit 46c69fccb7

View file

@ -45,6 +45,8 @@ extern "C" {
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdarg.h>
#include "units.h"
struct membuffer {