#include #include "plot.h" int main() { extern double identity(double x); plot(identity, 10); return 0; } double identity(double x) { return x; }