Fix handling of index so db test compiles on AIX
authorSam Hartman <hartmans@mit.edu>
Thu, 12 Oct 1995 05:58:24 +0000 (05:58 +0000)
committerSam Hartman <hartmans@mit.edu>
Thu, 12 Oct 1995 05:58:24 +0000 (05:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6964 dc483132-0cff-0310-8789-dd5450dbe970

src/util/berk_db/test/ChangeLog
src/util/berk_db/test/dbtest.c

index 25c428504f385ad6773df53c9a319f0784b5d834..ca04c6c1f3cf362c19110e1643bc2b01df49d767 100644 (file)
@@ -1,3 +1,8 @@
+Thu Oct 12 01:18:07 1995  Sam Hartman  <hartmans@tertius.mit.edu>
+
+       * dbtest.c (rfile):  Don't declare index.
+       (setflags setinfo): Same change
+
 
 Fri Sep 1 11:18:25 EDT 1995    Paul Park       (pjpark@mit.edu)
        * Makefile.in - Remove __dbtest after done with make check.
index 7a2e47b58b9f52df08ed708cd1e7cf2428bd09c7..0c9137396ffdde57c0bbd70ceb3044e0c5e2c63c 100644 (file)
@@ -535,7 +535,7 @@ u_int
 setflags(s)
        char *s;
 {
-       char *p, *index();
+       char *p ;
 
        for (; isspace(*s); ++s);
        if (*s == '\n' || *s == '\0')
@@ -597,7 +597,7 @@ setinfo(type, s)
        static BTREEINFO ib;
        static HASHINFO ih;
        static RECNOINFO rh;
-       char *eq, *index();
+       char *eq;
 
        if ((eq = index(s, '=')) == NULL)
                err("%s: illegal structure set statement", s);
@@ -693,7 +693,7 @@ rfile(name, lenp)
        struct stat sb;
        void *p;
        int fd;
-       char *np, *index();
+       char *np;
 
        for (; isspace(*name); ++name);
        if ((np = index(name, '\n')) != NULL)