1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

fix some compiler warnings

This commit is contained in:
Ludwig Ortmann 2013-03-07 13:53:14 +01:00
parent 795ab695c0
commit 144ebba9ca
4 changed files with 7 additions and 2 deletions

View File

@ -14,8 +14,8 @@
*/
#include <atomic.h>
#include <cpu.h>
#include "debug.h"
#include <irq.h>
#include <debug.h>
unsigned int atomic_set_return(unsigned int* val, unsigned int set)
{

View File

@ -14,6 +14,7 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "lpm.h"
#include "debug.h"

View File

@ -14,6 +14,7 @@
*/
#include <time.h>
#include <err.h>
#include "debug.h"

View File

@ -15,8 +15,11 @@
#include <stdio.h>
#include <kernel_intern.h>
#include <cpu.h>
extern void board_init(void);
extern void native_cpu_init(void);
extern void native_interrupt_init(void);
__attribute__ ((constructor)) static void startup(void)
{