[BACK]Return to regexec.c 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/regexec.c between version 1.8 and 1.9

version 1.8, 1997/07/13 20:06:00 version 1.9, 1997/07/21 14:08:17
Line 55  __RCSID("$NetBSD$");
Line 55  __RCSID("$NetBSD$");
  * macros that code uses.  This lets the same code operate on two different   * macros that code uses.  This lets the same code operate on two different
  * representations for state sets.   * representations for state sets.
  */   */
   #include "namespace.h"
 #include <sys/types.h>  #include <sys/types.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 63  __RCSID("$NetBSD$");
Line 64  __RCSID("$NetBSD$");
 #include <ctype.h>  #include <ctype.h>
 #include <regex.h>  #include <regex.h>
   
   #ifdef __weak_alias
   __weak_alias(regexec,_regexec);
   #endif
   
 #include "utils.h"  #include "utils.h"
 #include "regex2.h"  #include "regex2.h"
   

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb <webmaster@jp.NetBSD.org>