Revision 1931,
586 bytes
checked in by srz, 35 years ago
(diff) |
Initial revision
|
Line | |
---|
1 | /* |
---|
2 | * |
---|
3 | * Copyright (C) 1988, 1989 by the Massachusetts Institute of Technology |
---|
4 | * Developed by the MIT Student Information Processing Board (SIPB). |
---|
5 | * For copying information, see the file mit-copyright.h in this release. |
---|
6 | * |
---|
7 | */ |
---|
8 | /* |
---|
9 | * Hand-modified version -- do not delete. |
---|
10 | */ |
---|
11 | |
---|
12 | #define NULL 0 |
---|
13 | #ifdef __STDC__ |
---|
14 | #define NOARGS void |
---|
15 | #else |
---|
16 | #define NOARGS |
---|
17 | #define const |
---|
18 | #endif |
---|
19 | |
---|
20 | extern const char * const krb_err_txt[256]; |
---|
21 | extern int init_error_table(); |
---|
22 | |
---|
23 | const int krb_err_base = 39525376; |
---|
24 | |
---|
25 | int init_krb_err_tbl (NOARGS) { |
---|
26 | return(init_error_table(krb_err_txt, 39525376, 200)); |
---|
27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.