Remove strcasecmp(3) declaration 86/286/3
authorRobert Varga <nite@hq.sk>
Wed, 10 Feb 2016 14:57:23 +0000 (15:57 +0100)
committerRobert Varga <nite@hq.sk>
Wed, 10 Feb 2016 15:29:30 +0000 (16:29 +0100)
This should be coming from string.h.

Change-Id: Id88bb1d2a4681a9dcf6db9c7de2580a5219869d1
Signed-off-by: Robert Varga <nite@hq.sk>
vpp-japi/japi/vppjni.c

index af0d64c..f7c297f 100644 (file)
@@ -12,6 +12,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+#define _GNU_SOURCE /* for strcasestr(3) */
 #include <vnet/vnet.h>
 
 #define vl_api_version(n,v) static u32 vpe_api_version = (v);
@@ -476,7 +477,6 @@ JNIEXPORT jstring JNICALL Java_org_openvpp_vppjapi_vppConn_getInterfaceList0
     name_sort_t * nses = 0, * ns;
     const char *this_name;
     u8 * s = 0;
-    char *strcasestr (const char *, const char *);
     const char * nf = (*env)->GetStringUTFChars (env, name_filter, NULL);
     if (!nf)
         return NULL;