Add missing include in kicad_string.h

Without this include the HAVE_STRTOKR define won't be available to
the preprocessor and the strtok_r function will be declared
unconditionally and eventually clash with the declaration from the
system provided equivalent.
This commit is contained in:
Marvin Schmidt 2016-11-02 15:46:45 +01:00 committed by Wayne Stambaugh
parent 9ab7cfea0c
commit 66aee09388
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,8 @@
#ifndef KICAD_STRING_H_
#define KICAD_STRING_H_
#include "config.h"
#include <wx/string.h>
#include <wx/filename.h>