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
path: root/source
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2004-03-06 19:14:25 +0300
committerKent Mein <mein@cs.umn.edu>2004-03-06 19:14:25 +0300
commit0a4a186c2eec61412ccb1d2cdb6dc02da59209e9 (patch)
treed30a306fc1889a53830e1300ad19802517aabd58 /source
parent1cc19c699393eddc70697b95bcaa20673b15db7d (diff)
added #include <string.h>
to remove the following warnings: playanim.c:228: warning: implicit declaration of function `strdup' playanim.c:228: warning: assignment makes pointer from integer without a cast playanim.c:234: warning: implicit declaration of function `strcpy' playanim.c:281: warning: assignment makes pointer from integer without a cast playanim.c:299: warning: implicit declaration of function `strlen' playanim.c: In function `playanim': playanim.c:378: warning: implicit declaration of function `strcat' Kent
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/playanim.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/playanim.c b/source/blender/src/playanim.c
index 8fb67cc64f6..b685d464cc8 100644
--- a/source/blender/src/playanim.c
+++ b/source/blender/src/playanim.c
@@ -33,6 +33,7 @@
#include <sys/types.h>
#include <fcntl.h>
#include <stdlib.h>
+#include <string.h>
#ifdef HAVE_CONFIG_H
#include <config.h>