]> git.sesse.net Git - vlc/commitdiff
Fix strcasestr declaration
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 20 Aug 2007 18:42:11 +0000 (18:42 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 20 Aug 2007 18:42:11 +0000 (18:42 +0000)
include/vlc_input.h

index ee219660b5d8b545a98c688358d9db0552482d76..6f15034a605954414ad8aa12e13e1bc11be5e95f 100644 (file)
   #error You are not libvlc or one of its plugins. You cannot include this file
 #endif
 
-#ifndef __USE_GNU
-#define __USE_GNU
-#endif
-#include <string.h>                                     /* strcasestr() */
-
 /* __ is need because conflict with <vlc/input.h> */
 #ifndef _VLC__INPUT_H
 #define _VLC__INPUT_H 1
@@ -40,6 +35,8 @@
 #include <vlc_epg.h>
 #include <vlc_events.h>
 
+#include <string.h>                                     /* strcasestr() */
+
 struct vlc_meta_t;
 
 /*****************************************************************************