sdlExp function

double sdlExp(
  1. double x
)
extern DECLSPEC double SDLCALL SDL_exp(double x)

Implementation

double sdlExp(double x) {
  final sdlExpLookupFunction = libSdl2.lookupFunction<Double Function(Double x),
      double Function(double x)>('SDL_exp');
  return sdlExpLookupFunction(x);
}