Make compile_et output usable out-of-tree
[openafs.git] / src / comerr / error_table.h
index 642cd95..a58ab47 100644 (file)
@@ -5,15 +5,14 @@
  * For copyright info, see mit-sipb-cr.h.
  */
 
-#include <afs/param.h>
-
+#include <sys/types.h>
 #include <errno.h>
 
 #ifndef _AFS_ET_H
 
 struct error_table {
     char const *const *msgs;
-    afs_int32 base;
+    int base;
     int n_msgs;
 };
 struct et_list {
@@ -25,7 +24,7 @@ struct et_list {
 #define        ERRCODE_RANGE   8       /* # of bits to shift table number */
 #define        BITS_PER_CHAR   6       /* # bits to shift per character in name */
 
-extern char const *afs_error_table_name(afs_int32 num);
+extern char const *afs_error_table_name(int num);
 extern void afs_add_to_error_table(struct et_list *new_table);
 extern const char *afs_com_right(struct et_list *list, long code);
 extern const char *afs_com_right_r(struct et_list *list, long code, char *str, size_t len);