Commit 8b8d9224 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Fix warning about missing include files.

parent 3e810925
...@@ -88,7 +88,7 @@ pwre init $ename ...@@ -88,7 +88,7 @@ pwre init $ename
# Build # Build
mkdir -p $pwre_broot mkdir -p $pwre_broot
pwre configure pwre configure --parallel
pwre create_all_modules pwre create_all_modules
pwre build_all_modules $gui pwre build_all_modules $gui
#pwre build_kernel $gui #pwre build_kernel $gui
......
...@@ -135,12 +135,12 @@ INCLUDES ...@@ -135,12 +135,12 @@ INCLUDES
#include "co_math.h" #include "co_math.h"
#include <pb_type.h> #include "pb_type.h"
#include <pb_if.h> #include "pb_if.h"
#include <pb_fmb.h> #include "pb_fmb.h"
#include <pb_fm7.h> #include "pb_fm7.h"
#include <pb_err.h> #include "pb_err.h"
#include <pb_tools.h> #include "pb_tools.h"
LOCAL_DEFINES LOCAL_DEFINES
......
...@@ -80,12 +80,12 @@ ...@@ -80,12 +80,12 @@
// Message Q include files // Message Q include files
#include <p_entry.h> /* PAMS function declarations */ #include "p_entry.h" /* PAMS function declarations */
#include <p_proces.h> /* Known Queue number definitions */ #include "p_proces.h" /* Known Queue number definitions */
#include <p_group.h> /* Known Group ID definitions */ #include "p_group.h" /* Known Group ID definitions */
#include <p_typecl.h> /* Generic Type/Class definitions */ #include "p_typecl.h" /* Generic Type/Class definitions */
#include <p_return.h> /* PAMS return status definitions */ #include "p_return.h" /* PAMS return status definitions */
#include <p_symbol.h> /* Generic PSEL/PSYM definitions */ #include "p_symbol.h" /* Generic PSEL/PSYM definitions */
#define TIME_INCR 0.02 #define TIME_INCR 0.02
#define debug 0 #define debug 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment