[gforth] / gforth / engine / forth.h  

gforth: gforth/engine/forth.h

Diff for /gforth/engine/forth.h between version 1.1 and 1.2

version 1.1, Wed May 21 20:40:08 1997 UTC version 1.2, Sun Jun 15 19:43:47 1997 UTC
Line 227 
Line 227 
 int memcasecmp(const char *s1, const char *s2, long n);  int memcasecmp(const char *s1, const char *s2, long n);
   
 extern int offset_image;  extern int offset_image;
   
   /* declare all the functions that are missing */
   #ifndef HAVE_ATANH
   extern double atanh(double r1);
   extern double asinh(double r1);
   extern double acosh(double r1);
   #endif
   #ifndef HAVE_ECVT
   extern char* ecvt(double x, int len, int* exp, int* sign);
   #endif
   #ifndef HAVE_MEMMOVE
   extern char *memmove(char *dest, const char *src, long n);
   #endif
   #ifndef HAVE_POW10
   extern double pow10(double x);
   #endif
   #ifndef HAVE_STRERROR
   extern char *strerror(int err);
   #endif
   #ifndef HAVE_STRSIGNAL
   extern char *strsignal(int sig);
   #endif
   #ifndef HAVE_STRTOUL
   extern unsigned long int strtol(const char *nptr, char **endptr, int base);
   #endif
   
   


Generate output suitable for use with a patch program
Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help