1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

examples: make includes adhere to coding conventions

This commit is contained in:
Christian Mehlis 2014-03-24 11:08:42 +01:00
parent 520f0af066
commit 01fdbc3465
2 changed files with 6 additions and 5 deletions

View File

@ -32,11 +32,11 @@
#include "board_uart0.h" #include "board_uart0.h"
#ifdef MODULE_LTC4150 #ifdef MODULE_LTC4150
#include <ltc4150.h> #include "ltc4150.h"
#endif #endif
#ifdef MODULE_TRANSCEIVER #ifdef MODULE_TRANSCEIVER
#include <transceiver.h> #include "transceiver.h"
#endif #endif
#define SND_BUFFER_SIZE (100) #define SND_BUFFER_SIZE (100)

View File

@ -19,9 +19,10 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <thread.h>
#include <msg.h> #include "thread.h"
#include <kernel.h> #include "msg.h"
#include "kernel.h"
void second_thread(void) void second_thread(void)
{ {