]> git.webhop.me Git - lcd4linux.git/commitdiff
included "config.h" in "plugin.h" and changed "plugin.c" and "plugin_sample.c" accord...
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Tue, 19 Jan 2010 22:59:24 +0000 (22:59 +0000)
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Tue, 19 Jan 2010 22:59:24 +0000 (22:59 +0000)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1087 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

plugin.c
plugin.h
plugin_sample.c

index b5d3157106d60b7399893a006f37775793838a0e..b021e4a519aa342cd8fba2b4d4ef17000c57740f 100644 (file)
--- a/plugin.c
+++ b/plugin.c
  *
  */
 
-
-#include "config.h"
+#include "plugin.h"
 
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 
 #include "debug.h"
-#include "plugin.h"
 
 
 char *Plugins[] = {
index d87d26000bef84271370a455dd6d5868ce29ba9a..0de7684b54016e93dd48428da15d6da1281d489f 100644 (file)
--- a/plugin.h
+++ b/plugin.h
@@ -24,7 +24,7 @@
  *
  */
 
-
+#include "config.h"
 #include "evaluator.h"
 
 #ifndef _PLUGIN_H_
index 572c7bf458b5803ce89006b35de2de829d29e288..69417357670fe526111ebc6198427655b13536c3 100644 (file)
  */
 
 
-/* define the include files you need */
-#include "config.h"
+/* these should always be included */
+#include "debug.h"
+#include "plugin.h"
 
+/* define the include files you need */
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
 
-/* these should always be included */
-#include "debug.h"
-#include "plugin.h"
-
 #ifdef WITH_DMALLOC
 #include <dmalloc.h>
 #endif