MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ummin

Function ummin

freebsd/sys/libkern.h:108–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106 return (a > b ? a : b);
107}
108static __inline __uintmax_t ummin(__uintmax_t a, __uintmax_t b)
109{
110
111 return (a < b ? a : b);
112}
113static __inline off_t omax(off_t a, off_t b) { return (a > b ? a : b); }
114static __inline off_t omin(off_t a, off_t b) { return (a < b ? a : b); }
115static __inline int abs(int a) { return (a < 0 ? -a : a); }

Callers 4

bhnd_nvram_iocfe_readFunction · 0.85
blst_meta_freeFunction · 0.85
blst_meta_fillFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected