[BACK]Return to utils.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / regex

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/regex/utils.h between version 1.2 and 1.3

version 1.2, 1993/11/11 02:03:34 version 1.3, 1994/02/23 21:18:00
Line 2 
Line 2 
 #define DUPMAX          _POSIX2_RE_DUP_MAX      /* xxx is this right? */  #define DUPMAX          _POSIX2_RE_DUP_MAX      /* xxx is this right? */
 #define INFINITY        (DUPMAX + 1)  #define INFINITY        (DUPMAX + 1)
 #define NC              (CHAR_MAX - CHAR_MIN + 1)  #define NC              (CHAR_MAX - CHAR_MIN + 1)
   
 typedef unsigned char uch;  typedef unsigned char uch;
   
   /* switch off assertions (if not already off) if no REDEBUG */
 #ifndef REDEBUG  #ifndef REDEBUG
 #ifndef NDEBUG  #ifndef NDEBUG
 #define NDEBUG  /* no assertions please */  #define NDEBUG  /* no assertions please */
 #endif  #endif
 #endif  #endif
 #include <assert.h>  #include <assert.h>
   
   /* for old systems with bcopy() but no memmove() */
   #ifdef USEBCOPY
   #define memmove(d, s, c)        bcopy(s, d, c)
   #endif

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVSweb <webmaster@jp.NetBSD.org>