error table initiialization function.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12584
dc483132-0cff-0310-8789-
dd5450dbe970
+2000-07-24 Ezra Peisach <epeisach@mit.edu>
+
+ * et_c.awk: Actually define NOARGS as needed. Add prototype for
+ error table initiialization function.
+
2000-07-02 Ken Raeburn <raeburn@mit.edu>
* com_err.h (com_err): Undo previous change; com_err accepts a
print "#if defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)" > outfile
print "#define P(x) x" > outfile
+ print "#define NOARGS void" > outfile
print "#else" > outfile
print "#define P(x) ()" > outfile
+ print "#define NOARGS" > outfile
print "#define const" > outfile
print "#endif" > outfile
print "" > outfile
+ print "extern void initialize_" table_name "_error_table (NOARGS);" > outfile
+ print "" > outfile
print "static const char FAR * const text[] = {" > outfile
table_item_count = 0
}