mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
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:
parent
e3304d8d7d
commit
46c69fccb7
1 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,8 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include "units.h"
|
||||
|
||||
struct membuffer {
|
||||
|
|
Loading…
Reference in a new issue