Search for verstag.h in app subdirs first.
[bertos.git] / mware / event.h
index fe452c5863b5053e5b62d37505b083c8e32c2455..c81b3eabb095e92f4d305f94528306c7635fe841 100755 (executable)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.7  2006/03/20 17:52:22  bernie
+ *#* Add missing forward declaration.
+ *#*
+ *#* Revision 1.6  2006/02/24 01:17:44  bernie
+ *#* Update for new emulator.
+ *#*
+ *#* Revision 1.5  2006/02/24 00:26:21  bernie
+ *#* Fix header name.
+ *#*
  *#* Revision 1.4  2006/02/10 12:24:42  bernie
  *#* Fix standalone build.
  *#*
 #include <appconfig.h>
 
 #if CONFIG_KERNEL
-       #include <cfg/config_kern.h>
+       #include <config_kern.h>
        #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
-               #include "signal.h"
+               #include <kern/signal.h>
        #endif
+
+       /* Forward decl */
+       struct Process;
 #endif