]> git.sesse.net Git - vlc/blobdiff - plugins/dummy/intf_dummy.c
Fixed a cosmetic issue.
[vlc] / plugins / dummy / intf_dummy.c
index f22c5533c2f3889cea3a621a2441624d1c5794e4..352efe13311802b809f9fc8d4d90e85a14667bfd 100644 (file)
@@ -2,6 +2,7 @@
  * intf_dummy.c: dummy interface plugin
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
+ * $Id: intf_dummy.c,v 1.12 2001/12/07 18:33:07 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
 #include "defs.h"
 
 #include <stdlib.h>                                      /* malloc(), free() */
+#include <string.h>
 
-#include "config.h"
 #include "common.h"
+#include "intf_msg.h"
 #include "threads.h"
 #include "mtime.h"
 #include "tests.h"
 #include "interface.h"
 
 #include "modules.h"
-
-#include "main.h"
+#include "modules_export.h"
 
 /*****************************************************************************
  * intf_sys_t: description and status of FB interface
  *****************************************************************************/
 typedef struct intf_sys_s
 {
+    /* Prevent malloc(0) */
+    int i_dummy;
 
 } intf_sys_t;