all: Remove spaces inside and around parenthesis.

Using new options enabled in the uncrustify configuration.
This commit is contained in:
Damien George
2020-03-27 00:35:04 +11:00
parent b56caaf104
commit 1a3e386c67
24 changed files with 49 additions and 49 deletions

View File

@@ -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>