mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-22 22:23:54 -06:00
Spacing adjustments
This commit is contained in:
parent
ac41eb5871
commit
965b0ab53e
7 changed files with 34 additions and 39 deletions
|
@ -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
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue