qmimodem: Fix warning

This was introduced by the previous patch:
drivers/qmimodem/devinfo.c: In function ‘get_ids_cb’:
drivers/qmimodem/devinfo.c:129:14: error: implicit declaration of function ‘strcmp’ [-Werror=implicit-function-declaration]
  if (!str || strcmp(str, "0") == 0) {
This commit is contained in:
Denis Kenzior 2017-03-23 10:24:16 -05:00
parent a2a8e71db2
commit 8559a29d77
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,8 @@
#include <config.h>
#endif
#include <string.h>
#include <ofono/log.h>
#include <ofono/modem.h>
#include <ofono/devinfo.h>