DEBSOURCES
Skip Quicknav
sources / lintian / 2.5.50.4 / t / tests / shared-libs-missing-soname / debian / code.c
12345678910
#include <stdlib.h> #include <math.h> double e(void (*f)(char *)){ char tmp[10]; double x; f(tmp); x = atof(tmp); return exp(x); }