#ifndef CONVERT_H
#define CONVERT_H

double long_to_double(signed long l);
signed long double_to_long(double d); 

#endif
