diff options
author | tjr <tjr@FreeBSD.org> | 2005-05-14 03:02:22 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2005-05-14 03:02:22 +0000 |
commit | e4b49c84982ca77225117a127483a0802637e7e5 (patch) | |
tree | 48c467b95e7c87c86662c596b889fe56a0e898d8 /gnu/usr.bin/grep/grep.h | |
parent | 24af091514cc90220f93ff228469d31ee46ff937 (diff) | |
download | FreeBSD-src-e4b49c84982ca77225117a127483a0802637e7e5.zip FreeBSD-src-e4b49c84982ca77225117a127483a0802637e7e5.tar.gz |
Remove mb-caching hack.
Obtained from: Fedora (Tim Waugh)
Diffstat (limited to 'gnu/usr.bin/grep/grep.h')
-rw-r--r-- | gnu/usr.bin/grep/grep.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/usr.bin/grep/grep.h b/gnu/usr.bin/grep/grep.h index 8a10330..f4937e7 100644 --- a/gnu/usr.bin/grep/grep.h +++ b/gnu/usr.bin/grep/grep.h @@ -22,8 +22,6 @@ # define __attribute__(x) #endif -#include "mbcache.h" - /* Grep.c expects the matchers vector to be terminated by an entry with a NULL compile, and to contain at least an entry named "default". */ @@ -32,8 +30,7 @@ extern struct matcher { char name[8]; void (*compile) PARAMS ((char const *, size_t)); - size_t (*execute) PARAMS ((char const *, size_t, struct mb_cache *, - size_t *, int)); + size_t (*execute) PARAMS ((char const *, size_t, size_t *, int)); } const matchers[]; /* Exported from fgrepmat.c, egrepmat.c, grepmat.c. */ |