* [dpdk-dev] [PATCH] version: fix include
@ 2015-03-16 15:05 Thomas Monjalon
2015-03-17 21:22 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Monjalon @ 2015-03-16 15:05 UTC (permalink / raw)
To: dev
When including rte_version.h without string.h, there is a compilation error:
include/rte_version.h: error: implicit declaration of function ‘strlen’
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
lib/librte_eal/common/include/rte_version.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/librte_eal/common/include/rte_version.h b/lib/librte_eal/common/include/rte_version.h
index 89934dd..15bdec8 100644
--- a/lib/librte_eal/common/include/rte_version.h
+++ b/lib/librte_eal/common/include/rte_version.h
@@ -44,6 +44,7 @@ extern "C" {
#endif
#include <stdint.h>
+#include <string.h>
#include <rte_common.h>
/**
--
2.2.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dpdk-dev] [PATCH] version: fix include
2015-03-16 15:05 [dpdk-dev] [PATCH] version: fix include Thomas Monjalon
@ 2015-03-17 21:22 ` Thomas Monjalon
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2015-03-17 21:22 UTC (permalink / raw)
To: dev
> When including rte_version.h without string.h, there is a compilation error:
> include/rte_version.h: error: implicit declaration of function ‘strlen’
>
> Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-17 21:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-16 15:05 [dpdk-dev] [PATCH] version: fix include Thomas Monjalon
2015-03-17 21:22 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).