diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 17:44:03 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-12-08 17:44:03 +0000 |
commit | 31f54b93735bca0ef23b68dc1a1cf735800bbf14 (patch) | |
tree | 4689d2f96265e8171754e55073fae164523e1ebc /demos/GNU-Linux-GCC | |
parent | bdb7f4ab20bd3daf261ab93dfe733e0ff11dca0f (diff) | |
download | ChibiOS-31f54b93735bca0ef23b68dc1a1cf735800bbf14.tar.gz ChibiOS-31f54b93735bca0ef23b68dc1a1cf735800bbf14.tar.bz2 ChibiOS-31f54b93735bca0ef23b68dc1a1cf735800bbf14.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1398 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/GNU-Linux-GCC')
-rw-r--r-- | demos/GNU-Linux-GCC/chcore.c | 2 | ||||
-rw-r--r-- | demos/GNU-Linux-GCC/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/GNU-Linux-GCC/chcore.c b/demos/GNU-Linux-GCC/chcore.c index e7116edb4..6185b8f4e 100644 --- a/demos/GNU-Linux-GCC/chcore.c +++ b/demos/GNU-Linux-GCC/chcore.c @@ -28,7 +28,7 @@ * @{
*/
-#include <ch.h>
+#include "ch.h"
static struct itimerval tempo;
static bool_t pending = FALSE;
diff --git a/demos/GNU-Linux-GCC/main.c b/demos/GNU-Linux-GCC/main.c index 8d0d25879..07e16625c 100644 --- a/demos/GNU-Linux-GCC/main.c +++ b/demos/GNU-Linux-GCC/main.c @@ -19,7 +19,7 @@ #include <stdio.h>
-#include <ch.h>
+#include "ch.h"
static WORKING_AREA(waThread1, 2048);
static msg_t Thread1(void *arg) {
|