public
Description: A small OS for high reliability low memory embeded applications
Clone URL: git://github.com/andrewguy9/kernelpanic.git
General clean up of source.
Andrew Thomson (author)
Tue Jul 29 18:53:28 -0700 2008
commit  a48a8bebf1254f3bb183a8b2da3543a757da6a6c
tree    b05833e2a7f1439fb76c946986fdc0a208b268e5
parent  5a7ea55ddc1404fd9175b8f4e496b74dcf9af4cf
...
1
2
 
3
4
5
...
1
2
3
4
5
6
0
@@ -1,5 +1,6 @@
0
 #include"flags.h"
0
 #include<stdio.h>
0
+#include<stdlib.h>
0
 
0
 /*
0
  * Tests the flag unit. Prints the flag buffer to termainal for validation.
...
1
2
3
 
4
5
6
...
1
2
3
4
5
6
7
0
@@ -1,6 +1,7 @@
0
 #ifndef LINK_H
0
 #define LINK_H
0
 
0
+#include"utils.h"
0
 typedef unsigned long int WEIGHT;
0
 
0
 struct LINKED_LIST_LINK
...
21
22
23
 
24
...
21
22
23
24
25
0
@@ -21,4 +21,5 @@ struct LINKED_LIST_LINK * LinkedListPeek( struct LINKED_LIST * list );
0
 BOOL LinkedListIsEmpty( struct LINKED_LIST * list );
0
 
0
 void LinkedListInit( struct LINKED_LIST * list );
0
+
0
 #endif
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 #include<stdlib.h>
0
+#include<stdio.h>
0
 
0
 #include"ringbuffer.h"
0
 #include"utils.h"

Comments

    No one has commented yet.