Fix warning about undeclared strcmp() in a unit test

Just include the header declaring it in the test code.
This commit is contained in:
Vadim Zeitlin 2019-08-04 17:47:05 +02:00
commit dc2af47e1d

View file

@ -1,4 +1,5 @@
#include <assert.h>
#include <string.h>
#include "global_vars/global_vars_wrap.h"
int main(int argc, const char *argv[])