|
From: Inderjeet S. <ind...@gm...> - 2009-08-11 12:04:37
|
Please add a min() method to java_lang_Math
java_lang_Math.h
+ (NSInteger) min: (NSInteger)a b:(NSInteger)b ;
java_lang_Math.m
+ (NSInteger) min: (NSInteger)a b:(NSInteger)b
{
return (a <= b) ? a : b;
}
|