From 879f0a1ced6b5b0362adbffe4d17db9445945a0a Mon Sep 17 00:00:00 2001 From: William Woodall Date: Fri, 11 Dec 2015 17:51:16 -0800 Subject: [PATCH] rename file wip --- rcl/src/rcl/rcl.c | 6 +----- rcl/src/rcl/{stdatomics_helper.h => stdatomic_helper.h} | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) rename rcl/src/rcl/{stdatomics_helper.h => stdatomic_helper.h} (96%) diff --git a/rcl/src/rcl/rcl.c b/rcl/src/rcl/rcl.c index da8c303..a2b5c51 100644 --- a/rcl/src/rcl/rcl.c +++ b/rcl/src/rcl/rcl.c @@ -19,13 +19,9 @@ extern "C" #include "rcl/rcl.h" -#ifndef WIN32 -#include -#else -#include "./stdatomic/win32/stdatomic.h" -#endif #include +#include "./stdatomic_helper.h" #include "rcl/error_handling.h" static atomic_bool __rcl_is_initialized = ATOMIC_VAR_INIT(false); diff --git a/rcl/src/rcl/stdatomics_helper.h b/rcl/src/rcl/stdatomic_helper.h similarity index 96% rename from rcl/src/rcl/stdatomics_helper.h rename to rcl/src/rcl/stdatomic_helper.h index a7d2352..f3822bd 100644 --- a/rcl/src/rcl/stdatomics_helper.h +++ b/rcl/src/rcl/stdatomic_helper.h @@ -17,7 +17,7 @@ #if !defined(WIN32) - +// #include #else