~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to src/system.h

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2005-09-20 16:39:41 UTC
  • Revision ID: james.westby@ubuntu.com-20050920163941-514vxc8yc682ev00
Tags: 2.8.1-11ubuntu1
Applied patch to make --ignore-file-name-case work.
(Ubuntu 7291, Debian #300258.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
237
237
void *memchr ();
238
238
# endif
239
239
#endif
 
240
#if ! HAVE_STRCASECOLL
 
241
# if HAVE_STRICOLL || defined stricoll
 
242
#  define strcasecoll(a, b) stricoll (a, b)
 
243
# else
 
244
#  define strcasecoll(a, b) strcasecmp (a, b) /* best we can do */
 
245
# endif
 
246
#endif
240
247
 
241
248
#if HAVE_LOCALE_H
242
249
# include <locale.h>