Deleted Added
full compact
fnmatch.c (54427) fnmatch.c (102840)
1/* Copyright (C) 1992 Free Software Foundation, Inc.
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details. */
13
14/* Modified slightly by Brian Berliner <berliner@sun.com> and
15 Jim Blandy <jimb@cyclic.com> for CVS use */
16
17#ifdef HAVE_CONFIG_H
1/* Copyright (C) 1992 Free Software Foundation, Inc.
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details. */
13
14/* Modified slightly by Brian Berliner <berliner@sun.com> and
15 Jim Blandy <jimb@cyclic.com> for CVS use */
16
17#ifdef HAVE_CONFIG_H
18#include "config.h"
18# include "config.h"
19#endif
20
21#include "system.h"
22
23/* IGNORE(@ */
24/* #include <ansidecl.h> */
25/* @) */
26#include <errno.h>
19#endif
20
21#include "system.h"
22
23/* IGNORE(@ */
24/* #include <ansidecl.h> */
25/* @) */
26#include <errno.h>
27#include <fnmatch.h>
27#include "fnmatch.h"
28
29#if !defined(__GNU_LIBRARY__) && !defined(STDC_HEADERS)
30extern int errno;
31#endif
32
33/* Match STRING against the filename pattern PATTERN, returning zero if
34 it matches, nonzero if not. */
35int

--- 146 unchanged lines hidden ---
28
29#if !defined(__GNU_LIBRARY__) && !defined(STDC_HEADERS)
30extern int errno;
31#endif
32
33/* Match STRING against the filename pattern PATTERN, returning zero if
34 it matches, nonzero if not. */
35int

--- 146 unchanged lines hidden ---