Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-03-24 08:43:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-24 11:34:44 +0300
commit865025c343ac38f649b671d74fb6903dc2ec87da (patch)
treeb386829f015eb691e66916bf30f92b6938ff65d0 /source/blender/blenlib/intern
parent3f47df577d05478a324b6eca80df0a33c838fab8 (diff)
Cleanup: remove stdio.h header from MEM_guardedalloc.h
This was included for `FILE *` which isn't used in the header. Ref D10799
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/BLI_args.c1
-rw-r--r--source/blender/blenlib/intern/BLI_dynstr.c1
-rw-r--r--source/blender/blenlib/intern/edgehash.c1
-rw-r--r--source/blender/blenlib/intern/string.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_args.c b/source/blender/blenlib/intern/BLI_args.c
index 07ab4f407f2..70a51982925 100644
--- a/source/blender/blenlib/intern/BLI_args.c
+++ b/source/blender/blenlib/intern/BLI_args.c
@@ -23,6 +23,7 @@
*/
#include <ctype.h> /* for tolower */
+#include <stdio.h>
#include <string.h>
#include "MEM_guardedalloc.h"
diff --git a/source/blender/blenlib/intern/BLI_dynstr.c b/source/blender/blenlib/intern/BLI_dynstr.c
index 3e80f791fa5..7b25fecfa45 100644
--- a/source/blender/blenlib/intern/BLI_dynstr.c
+++ b/source/blender/blenlib/intern/BLI_dynstr.c
@@ -22,6 +22,7 @@
* \ingroup bli
*/
+#include <stdio.h>
#include <stdlib.h> /* malloc */
#include <string.h>
diff --git a/source/blender/blenlib/intern/edgehash.c b/source/blender/blenlib/intern/edgehash.c
index 05ee02ad869..b8bf535a3b4 100644
--- a/source/blender/blenlib/intern/edgehash.c
+++ b/source/blender/blenlib/intern/edgehash.c
@@ -24,6 +24,7 @@
*/
#include <limits.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index 3bfedd6f586..ccc11af9f2b 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -25,6 +25,7 @@
#include <inttypes.h>
#include <math.h>
#include <stdarg.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>