Remove leading space from before #ifs (#2523)
It both is against coding style and confuses the `gen-magic-strings.py` build tool. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
@@ -33,7 +33,7 @@
|
|||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef JERRY_SYSTEM_ALLOCATOR
|
#ifndef JERRY_SYSTEM_ALLOCATOR
|
||||||
/**
|
/**
|
||||||
* Heap structure
|
* Heap structure
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -13,11 +13,11 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if !defined (_XOPEN_SOURCE) || _XOPEN_SOURCE < 500
|
#if !defined (_XOPEN_SOURCE) || _XOPEN_SOURCE < 500
|
||||||
#undef _XOPEN_SOURCE
|
#undef _XOPEN_SOURCE
|
||||||
/* Required macro for sleep functions (nanosleep or usleep) */
|
/* Required macro for sleep functions (nanosleep or usleep) */
|
||||||
#define _XOPEN_SOURCE 500
|
#define _XOPEN_SOURCE 500
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_TIME_H
|
#ifdef HAVE_TIME_H
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user