Spacing adjustments

This commit is contained in:
Scott Lahteine
2017-10-01 21:33:52 -05:00
parent ac41eb5871
commit 965b0ab53e
7 changed files with 34 additions and 39 deletions

View File

@ -134,7 +134,7 @@ typedef int32_t(*PFI)();
/* NULL pointer */
#ifndef NULL
#define NULL ((void*) 0)
#define NULL ((void*) 0)
#endif
/* Number of elements in an array */
@ -145,11 +145,11 @@ typedef int32_t(*PFI)();
/* External data/function define */
#define EXTERN extern
#if !defined(MAX)
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
#if !defined(MIN)
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
/**