[BACK]Return to stdfn.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot

Diff for /OpenXM_contrib/gnuplot/Attic/stdfn.h between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/01/22 14:15:56 version 1.1.1.3, 2003/09/15 07:09:23
Line 221  extern int errno;
Line 221  extern int errno;
 # endif /* HAVE_VALUES_H */  # endif /* HAVE_VALUES_H */
 #endif /* !NO_LIMITS_H */  #endif /* !NO_LIMITS_H */
   
 #ifdef NO_TIME_H  /* ctime etc, should also define time_t and struct tm */
 # ifndef time_t /* should be #defined by config.h, then... */  #ifndef NO_TIME_H
 #  define time_t long  # include <time.h>
 # endif  
 #else  
 # include <time.h> /* ctime etc, should also define time_t and struct tm */  
 #endif  #endif
   
   #ifndef HAVE_TIME_T_IN_TIME_H
   # define time_t long
   #endif
   
 #if defined(PIPES) && (defined(VMS) || (defined(OSK) && defined(_ANSI_EXT))) || defined(PIPES) && defined(AMIGA_SC_6_1)  #if defined(PIPES) && (defined(VMS) || (defined(OSK) && defined(_ANSI_EXT))) || defined(PIPES) && defined(AMIGA_SC_6_1)
 FILE *popen __PROTO((char *, char *));  FILE *popen __PROTO((char *, char *));
 int pclose __PROTO((FILE *));  int pclose __PROTO((FILE *));
Line 244  int pclose __PROTO((FILE *));
Line 245  int pclose __PROTO((FILE *));
   
 #ifndef NO_MATH_H  #ifndef NO_MATH_H
 # include <math.h>  # include <math.h>
   #endif
   
   /* Normally in <math.h> */
   #ifndef M_PI
   # define M_PI 3.14159265358979323846
   #endif
   #ifndef M_PI_2
   # define M_PI_2 1.57079632679489661923
   #endif
   
   #ifndef HAVE_STRCASECMP
   # ifdef HAVE_STRICMP
   #  define strcasecmp stricmp
   # else
   int gp_stricmp __PROTO((const char *, const char *));
   #  define strcasecmp gp_stricmp
   # endif
 #endif  #endif
   
 #ifndef HAVE_STRNICMP  #ifndef HAVE_STRNICMP

Legend:
Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>