#ifndef _INCLUDE_FP_UTILS_H_ #define _INCLUDE_FP_UTILS_H_ #ifdef MACOSX #define strtod ti_strtod /* avoid a symbol conflict */ #endif #ifdef __cplusplus extern "C" { #endif double strtod(const char *, char **); char *g_fmt(register char *, double); #ifdef __cplusplus } #endif #endif