Searched refs:MIN (Results 1 – 1 of 1) sorted by relevance
50 #define MIN(x,y) ({ typeof(x) _x = (x); typeof(y) _y = (y); _x <= _y ? _x : _y; }) macro817 int to_copy = MIN((int)sizeof(host_name)-1, port_name - host_and_port); in sock_address_list_create2()