diff options
| author | Damien George | 2020-03-27 00:35:04 +1100 |
|---|---|---|
| committer | Damien George | 2020-03-28 23:36:44 +1100 |
| commit | 1a3e386c67e03a79eb768cb6e9f6777e002d6660 (patch) | |
| tree | 7e0b0620744e738bb281eb1c032b21a53558b8c0 /mpy-cross | |
| parent | b56caaf104a196902efb23f324f7e290c6f3d291 (diff) | |
all: Remove spaces inside and around parenthesis.
Using new options enabled in the uncrustify configuration.
Diffstat (limited to 'mpy-cross')
| -rw-r--r-- | mpy-cross/mpconfigport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mpy-cross/mpconfigport.h b/mpy-cross/mpconfigport.h index 723d1af4f..2e7cb3e8c 100644 --- a/mpy-cross/mpconfigport.h +++ b/mpy-cross/mpconfigport.h @@ -93,11 +93,11 @@ #ifdef __LP64__ typedef long mp_int_t; // must be pointer size typedef unsigned long mp_uint_t; // must be pointer size -#elif defined ( __MINGW32__ ) && defined( _WIN64 ) +#elif defined(__MINGW32__) && defined(_WIN64) #include <stdint.h> typedef __int64 mp_int_t; typedef unsigned __int64 mp_uint_t; -#elif defined ( _MSC_VER ) && defined( _WIN64 ) +#elif defined(_MSC_VER) && defined(_WIN64) typedef __int64 mp_int_t; typedef unsigned __int64 mp_uint_t; #else @@ -119,7 +119,7 @@ typedef long mp_off_t; // We need to provide a declaration/definition of alloca() #ifdef __FreeBSD__ #include <stdlib.h> -#elif defined( _WIN32 ) +#elif defined(_WIN32) #include <malloc.h> #else #include <alloca.h> |
