Print this page
*** NO COMMENTS ***

@@ -20,14 +20,16 @@
  * CDDL HEADER END
  */
 /*
  * Copyright (c) 1994, by Sun Microsystems, Inc.
  * All rights reserved.
+ *
+ * Copyright 2012 Nexenta Systems, Inc.  All rights reserved.
  */
                                                             
-#ident  "%Z%%M% %I%     %E% SMI"        /* SMI4.1 1.4 */
-
+#include <stdlib.h>
+#include <strings.h>
 #include <ctype.h>
 #include "util.h"
 #include "table.h"
 
 

@@ -61,11 +63,11 @@
 }
 
 
 void
 store(table, key, datum)
-        stringtable table;
+        tablelist *table;
         char *key;
         char *datum;
 {
         int index;
         tablelist cur, new;

@@ -81,11 +83,11 @@
 }
 
 
 char *
 lookup(table, key)
-        stringtable table;
+        tablelist *table;
         char *key;
 {
         tablelist cur;
 
         cur = table[tablekey(key)];