MIN(9F) | Kernel Functions for Drivers | MIN(9F) |
min - return the lesser of two integers
#include <sys/ddi.h> int min(int int1, int int2);
Architecture independent level 1 (DDI/DKI).
int1
int2
The min() function compares two signed integers and returns the lesser of the two.
The lesser of the two integers.
The min() function can be called from user, interrupt, or kernel context.
Writing Device Drivers
January 16, 2006 | OmniOS |