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:
Akos Kiss 2018-09-12 15:00:05 +02:00 committed by Robert Sipka
parent 5472aff0dc
commit 4ec607a58b
2 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@
* @{
*/
#ifndef JERRY_SYSTEM_ALLOCATOR
#ifndef JERRY_SYSTEM_ALLOCATOR
/**
* Heap structure
*

View File

@ -13,11 +13,11 @@
* limitations under the License.
*/
#if !defined (_XOPEN_SOURCE) || _XOPEN_SOURCE < 500
#undef _XOPEN_SOURCE
/* Required macro for sleep functions (nanosleep or usleep) */
#define _XOPEN_SOURCE 500
#endif
#if !defined (_XOPEN_SOURCE) || _XOPEN_SOURCE < 500
#undef _XOPEN_SOURCE
/* Required macro for sleep functions (nanosleep or usleep) */
#define _XOPEN_SOURCE 500
#endif
#ifdef HAVE_TIME_H
#include <time.h>