summaryrefslogtreecommitdiff
path: root/oldXMenu/Create.c
diff options
context:
space:
mode:
authorMichal Nazarewicz <mina86@mina86.com>2017-02-10 19:14:39 +0100
committerMichal Nazarewicz <mina86@mina86.com>2017-02-15 16:54:06 +0100
commitaeeb86c99d8f25793393324c4e826a23b38b6c3c (patch)
tree7a9c2b740dde142d5aa053143c19dff9e41737b2 /oldXMenu/Create.c
parente6041a05a0ab51c5d600459e4aca67837070a96a (diff)
downloademacs-aeeb86c99d8f25793393324c4e826a23b38b6c3c.tar.gz
oldXMenu: add missing #include <string.h>
Some of the files in oldXMenu use functions from string.h without including that header which results in compile warnings: ChgPane.c:46:5: warning: implicit declaration of function ‘strlen’ ChgPane.c:46:20: warning: incompatible implicit declaration of built-in function ‘strlen’ ChgSel.c:62:2: warning: implicit declaration of function ‘strlen’ ChgSel.c:62:17: warning: incompatible implicit declaration of built-in function ‘strlen’ Create.c:220:5: warning: implicit declaration of function ‘strcmp’ InsPane.c:65:5: warning: implicit declaration of function ‘strlen’ InsPane.c:65:20: warning: incompatible implicit declaration of built-in function ‘strlen’ InsSel.c:68:5: warning: implicit declaration of function ‘strlen’ InsSel.c:68:20: warning: incompatible implicit declaration of built-in function ‘strlen’ InsSel.c:75:5: warning: implicit declaration of function ‘strcmp’ Add the necessary ‘#include <string.h>’. oldXMenu/ChgPane.c, oldXMenu/ChgSel.c, oldXMenu/Create.c, oldXMenu/InsPane.c, oldXMenu/InsSel.c: add missing #include <string.h>
Diffstat (limited to 'oldXMenu/Create.c')
-rw-r--r--oldXMenu/Create.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/oldXMenu/Create.c b/oldXMenu/Create.c
index 0e72a2d2e58..a0913685365 100644
--- a/oldXMenu/Create.c
+++ b/oldXMenu/Create.c
@@ -31,6 +31,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "XMenuInt.h"
#include <stdlib.h>
+#include <string.h>
#ifdef EMACS_BITMAP_FILES
#include "../src/bitmaps/dimple1.xbm"