[lib] remove assert.h from debug.h, which clears up an order of inclusion problem

This commit is contained in:
Travis Geiselbrecht
2012-04-10 14:21:12 -07:00
parent 1286b6b149
commit b1da117fdd
8 changed files with 7 additions and 1 deletions

View File

@@ -23,7 +23,6 @@
#ifndef __DEBUG_H
#define __DEBUG_H
#include <assert.h>
#include <stdarg.h>
#include <compiler.h>
#include <platform/debug.h>

View File

@@ -41,6 +41,7 @@
*/
#include <debug.h>
#include <assert.h>
#include <err.h>
#include <kernel/event.h>

View File

@@ -30,6 +30,7 @@
*/
#include <debug.h>
#include <assert.h>
#include <err.h>
#include <kernel/mutex.h>
#include <kernel/thread.h>

View File

@@ -31,6 +31,7 @@
* @{
*/
#include <debug.h>
#include <assert.h>
#include <list.h>
#include <malloc.h>
#include <string.h>

View File

@@ -35,6 +35,7 @@
* @{
*/
#include <debug.h>
#include <assert.h>
#include <list.h>
#include <kernel/thread.h>
#include <kernel/timer.h>

View File

@@ -24,6 +24,7 @@
#include <debug.h>
#include <pow2.h>
#include <string.h>
#include <assert.h>
#include <lib/cbuf.h>
#include <kernel/event.h>

View File

@@ -21,6 +21,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <debug.h>
#include <assert.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>

View File

@@ -22,6 +22,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <debug.h>
#include <assert.h>
#include <err.h>
#include <list.h>
#include <rand.h>