diff options
author | wosch <wosch@FreeBSD.org> | 1996-09-16 01:17:25 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1996-09-16 01:17:25 +0000 |
commit | 0db310bc8ea87a5b2fb3b253959bf25ffa6b1253 (patch) | |
tree | 7f7b82ed51533974ebd223cac182ca79c96f475f /usr.bin/locate | |
parent | e4df920fb24f2f806958759394c7d8d66ba69280 (diff) | |
download | FreeBSD-src-0db310bc8ea87a5b2fb3b253959bf25ffa6b1253.zip FreeBSD-src-0db310bc8ea87a5b2fb3b253959bf25ffa6b1253.tar.gz |
#include <fastfind.c> -> #include "fastfind.c"
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/locate/locate.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/locate/locate/locate.c b/usr.bin/locate/locate/locate.c index 0935283..c983ac5 100644 --- a/usr.bin/locate/locate/locate.c +++ b/usr.bin/locate/locate/locate.c @@ -34,7 +34,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locate.c,v 1.3 1996/08/29 22:39:41 wosch Exp wosch $ + * $Id: locate.c,v 1.4 1996/08/31 23:14:53 wosch Exp $ */ #ifndef lint @@ -352,15 +352,15 @@ usage () #undef FF_ICASE #define FF_MMAP -#include <fastfind.c> +#include "fastfind.c" #define FF_ICASE -#include <fastfind.c> +#include "fastfind.c" #endif /* MMAP */ /* fopen */ /* fastfind, fastfind_icase */ #undef FF_MMAP #undef FF_ICASE -#include <fastfind.c> +#include "fastfind.c" #define FF_ICASE -#include <fastfind.c> +#include "fastfind.c" |