tests: Fix header inclusion in win32-appinfo.c

This fixes the following build failure on FreeBSD:
```
  In file included from ../gio/tests/win32-appinfo.c:24:
  /usr/include/malloc.h:3:2: error: "<malloc.h> has been replaced by <stdlib.h>"
  #error "<malloc.h> has been replaced by <stdlib.h>"
```

Hopefully it doesn’t break Windows.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2020-01-20 15:22:03 +00:00
parent 30c8eb85ab
commit 03380a4928

View File

@ -21,7 +21,7 @@
#include <glib/glib.h>
#include <gio/gio.h>
#include <malloc.h>
#include <stdlib.h>
#include "../giowin32-private.c"