diff options
author | Szymon Janc <szymon.janc@tieto.com> | 2013-10-04 11:05:28 +0200 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2013-10-04 14:10:33 +0300 |
commit | 21d3b9c3b2ae00a5e5be16888108e06b26662b22 (patch) | |
tree | 7efec6253efcd2aa7b382c4c210cc2cc41c6cb18 /obexd | |
parent | fcc8b020d8206fd61c3a5693ab5eedd25c656d7c (diff) |
obexd/MAP: Fix missing include
This fix following build error:
CC obexd/client/obexd-mns.o
obexd/client/mns.c: In function ‘parse_event_report_handle’:
obexd/client/mns.c:187:2: error: implicit declaration of function
‘strtoull’ [-Werror=implicit-function-declaration]
Diffstat (limited to 'obexd')
-rw-r--r-- | obexd/client/mns.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/obexd/client/mns.c b/obexd/client/mns.c index 033a0cb13..cc579d16b 100644 --- a/obexd/client/mns.c +++ b/obexd/client/mns.c @@ -31,6 +31,7 @@ #include <fcntl.h> #include <inttypes.h> #include <stdbool.h> +#include <stdlib.h> #include <gobex/gobex.h> #include <gobex/gobex-apparam.h> |