Skip to content

Commit

Permalink
Fixed empty-translation-unit errors reported for pedantic build
Browse files Browse the repository at this point in the history
  • Loading branch information
geky committed Aug 15, 2016
1 parent 8f9a251 commit 3158e58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions equeue_mbed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
* Copyright (c) 2016 Christopher Haster
* Distributed under the MIT license
*/
#if defined(__MBED__)

#include "equeue_tick.h"
#include "equeue_sema.h"
#include "equeue_mutex.h"

#if defined(__MBED__)

#include <stdbool.h>
#include "mbed.h"

Expand Down
4 changes: 2 additions & 2 deletions equeue_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* Copyright (c) 2016 Christopher Haster
* Distributed under the MIT license
*/
#if defined(__unix__)

#include "equeue_tick.h"
#include "equeue_sema.h"
#include "equeue_mutex.h"

#if defined(__unix__)

#include <time.h>
#include <sys/time.h>
#include <errno.h>
Expand Down
4 changes: 2 additions & 2 deletions equeue_windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* Copyright (c) 2016 Christopher Haster
* Distributed under the MIT license
*/
#if defined(_WIN32)

#include "equeue_tick.h"
#include "equeue_sema.h"
#include "equeue_mutex.h"

#if defined(_WIN32)

#include <windows.h>


Expand Down

0 comments on commit 3158e58

Please sign in to comment.