You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/librsync/files/librsync-0.9.7-implicit-dec...

20 lines
568 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Description: Fix -Wimplicit-function-declaration warning in the test suite
Fix the warning: isprefix.driver.c:43:5: warning: implicit declaration of
function strcmp [-Wimplicit-function-declaration]
Author: Andrey Rahmatullin <wrar@wrar.name>
Forwarded: no
Last-Update: 2012-02-05
diff --git a/testsuite/isprefix.driver.c b/testsuite/isprefix.driver.c
index a9fd77b..df558c2 100644
--- a/testsuite/isprefix.driver.c
+++ b/testsuite/isprefix.driver.c
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include "isprefix.h"