blob: 518371946323ac7a04f11df249252f66c6437312 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package java.lang;
public class Math {
public static int min(int a, int b) {
return 0;
}
public static int max(int a, int b) {
return 0;
}
public static int abs(int a) {
return 0;
}
}