1/* 2 * exp2.c 3 * cLibm 4 * 5 * Created by Ian Ollmann on 6/14/07. 6 * Copyright 2007 Apple Inc. All rights reserved. 7 * 8 */ 9 10 #include <math.h> 11 12 #warning exp2 is just a stub to get the test linking 13 14 double exp2( double x ) 15 { 16 17 return 0.0; 18 } 19