Request process arguments differently, mmap-style dlmalloc port, new linklist utils
This commit is contained in:
@ -11,6 +11,20 @@
|
||||
*(X); \
|
||||
}) \
|
||||
|
||||
#define MIN(a, b) \
|
||||
({ \
|
||||
typeof(a) _a = (a); \
|
||||
typeof(b) _b = (b); \
|
||||
(_a < _b ? _a : _b); \
|
||||
})
|
||||
|
||||
#define MAX(a, b) \
|
||||
({ \
|
||||
typeof(a) _a = (a); \
|
||||
typeof(b) _b = (b); \
|
||||
(_a > _b ? _a : _b); \
|
||||
})
|
||||
|
||||
void quit(void);
|
||||
|
||||
#endif // ULIB_UTIL_UTIL_H_
|
||||
|
Reference in New Issue
Block a user