[BACK]Return to fnmatch.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

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

Diff for /src/lib/libc/gen/fnmatch.c between version 1.1.1.2 and 1.11.4.1

version 1.1.1.2, 1995/02/25 09:11:31 version 1.11.4.1, 1996/09/19 20:02:33
Line 1 
Line 1 
   /*      $NetBSD$        */
   
 /*  /*
  * Copyright (c) 1989, 1993, 1994   * Copyright (c) 1989, 1993, 1994
  *      The Regents of the University of California.  All rights reserved.   *      The Regents of the University of California.  All rights reserved.
Line 35 
Line 37 
  */   */
   
 #if defined(LIBC_SCCS) && !defined(lint)  #if defined(LIBC_SCCS) && !defined(lint)
   #if 0
 static char sccsid[] = "@(#)fnmatch.c   8.2 (Berkeley) 4/16/94";  static char sccsid[] = "@(#)fnmatch.c   8.2 (Berkeley) 4/16/94";
   #else
   static char rcsid[] = "$NetBSD$";
   #endif
 #endif /* LIBC_SCCS and not lint */  #endif /* LIBC_SCCS and not lint */
   
 /*  /*
Line 43  static char sccsid[] = "@(#)fnmatch.c 8.
Line 49  static char sccsid[] = "@(#)fnmatch.c 8.
  * Compares a filename or pathname to a pattern.   * Compares a filename or pathname to a pattern.
  */   */
   
   #include "namespace.h"
 #include <fnmatch.h>  #include <fnmatch.h>
 #include <string.h>  #include <string.h>
   
   #ifdef __weak_alias
   __weak_alias(fnmatch,_fnmatch);
   #endif
   
 #define EOS     '\0'  #define EOS     '\0'
   
 static const char *rangematch __P((const char *, int, int));  static const char *rangematch __P((const char *, int, int));

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

CVSweb <webmaster@jp.NetBSD.org>