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>2010-08-13 19:26:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-13 19:26:37 +0400
commit96b138d98bc38fd2a4cf3556fc45f7dd6d134a4e (patch)
treeb5c452888937b49aab9d0f89687d057317ba9393 /source/blender/blenlib/BLI_ghash.h
parent8e6c654294bd0bcde4c044a6be649262b7b4e507 (diff)
added include for offsetof(), also use <string.h>, not "string.h"
Diffstat (limited to 'source/blender/blenlib/BLI_ghash.h')
-rw-r--r--source/blender/blenlib/BLI_ghash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_ghash.h b/source/blender/blenlib/BLI_ghash.h
index 92a99c9a3b4..16444c17563 100644
--- a/source/blender/blenlib/BLI_ghash.h
+++ b/source/blender/blenlib/BLI_ghash.h
@@ -36,9 +36,9 @@
extern "C" {
#endif
-#include "stdio.h"
-#include "stdlib.h"
-#include "string.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include "BKE_utildefines.h"
#include "MEM_guardedalloc.h"