ae3fd34e00
Fix the following error detected by checkpatch.pl: ERROR: space required after that ',' (ctx:VxV) TEST=Build and run on Galileo Gen2 Change-Id: I297bfc3d03dc95b471d3bb4b13803e81963841b5 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18647 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
22 lines
411 B
C
22 lines
411 B
C
#ifndef STDLIB_H
|
|
#define STDLIB_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#define min(a, b) MIN((a), (b))
|
|
#define max(a, b) MAX((a), (b))
|
|
|
|
void *memalign(size_t boundary, size_t size);
|
|
void *malloc(size_t size);
|
|
/* We never free memory */
|
|
static inline void free(void *ptr) {}
|
|
|
|
#ifndef __ROMCC__
|
|
static inline unsigned long div_round_up(unsigned int n, unsigned int d)
|
|
{
|
|
return (n + d - 1) / d;
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* STDLIB_H */
|