svn commit: r306758 - head/usr.bin/locate/locate
Ed Maste
emaste at FreeBSD.org
Thu Oct 6 13:37:47 UTC 2016
Author: emaste
Date: Thu Oct 6 13:37:46 2016
New Revision: 306758
URL: https://svnweb.freebsd.org/changeset/base/306758
Log:
locate: ANSIfy
Modified:
head/usr.bin/locate/locate/locate.c
head/usr.bin/locate/locate/util.c
Modified: head/usr.bin/locate/locate/locate.c
==============================================================================
--- head/usr.bin/locate/locate/locate.c Thu Oct 6 13:21:42 2016 (r306757)
+++ head/usr.bin/locate/locate/locate.c Thu Oct 6 13:37:46 2016 (r306758)
@@ -134,9 +134,7 @@ extern int check_bigram_char(int);
extern char *patprep(char *);
int
-main(argc, argv)
- int argc;
- char **argv;
+main(int argc, char **argv)
{
register int ch;
char **dbv = NULL;
@@ -225,10 +223,13 @@ main(argc, argv)
}
+/*
+ * Arguments:
+ * db database
+ * s search strings
+ */
void
-search_fopen(db, s)
- char *db; /* database */
- char **s; /* search strings */
+search_fopen(char *db, char **s)
{
FILE *fp;
#ifdef DEBUG
@@ -275,10 +276,13 @@ search_fopen(db, s)
}
#ifdef MMAP
+/*
+ * Arguments:
+ * db database
+ * s search strings
+ */
void
-search_mmap(db, s)
- char *db; /* database */
- char **s; /* search strings */
+search_mmap(char *db, char **s)
{
struct stat sb;
int fd;
Modified: head/usr.bin/locate/locate/util.c
==============================================================================
--- head/usr.bin/locate/locate/util.c Thu Oct 6 13:21:42 2016 (r306757)
+++ head/usr.bin/locate/locate/util.c Thu Oct 6 13:37:46 2016 (r306758)
@@ -83,10 +83,7 @@ check_bigram_char(ch)
*
*/
char **
-colon(dbv, path, dot)
- char **dbv;
- char *path;
- char *dot; /* default for single ':' */
+colon(char **dbv, char *path, char *dot)
{
int vlen, slen;
char *c, *ch, *p;
More information about the svn-src-all
mailing list