#include "proctext.h" float Abs(float x) { return (x < 0 ? -x : x); }