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:
Diffstat (limited to 'source/blender/blenlib/intern/BLI_util.h')
-rw-r--r--source/blender/blenlib/intern/BLI_util.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenlib/intern/BLI_util.h b/source/blender/blenlib/intern/BLI_util.h
index 96cc6782cac..b033c89a0c9 100644
--- a/source/blender/blenlib/intern/BLI_util.h
+++ b/source/blender/blenlib/intern/BLI_util.h
@@ -36,17 +36,10 @@
#ifndef BLI_UTIL_H
#define BLI_UTIL_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#define mallocstructN(x,y,name) (x*)MEM_mallocN((y)* sizeof(x),name)
#define callocstructN(x,y,name) (x*)MEM_callocN((y)* sizeof(x),name)
-
struct ListBase;
-/* void addlisttolist(struct ListBase *list1, struct ListBase *list2); */
-
#endif