diff options
author | Tom Yu <tlyu@mit.edu> | 2009-12-07 22:36:41 +0000 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2009-12-07 22:36:41 +0000 |
commit | ac911f663389980be59a0f9ee98f062e6c627658 (patch) | |
tree | c423ac7174c1a82a107013894a6944a506e68774 /src/util/et/error_table.h | |
parent | 741938feb12538b659a36d7e0329efe6a5550669 (diff) | |
download | krb5-ac911f663389980be59a0f9ee98f062e6c627658.tar.gz krb5-ac911f663389980be59a0f9ee98f062e6c627658.tar.xz krb5-ac911f663389980be59a0f9ee98f062e6c627658.zip |
Mark and reindent util, with some exceptions
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23455 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/et/error_table.h')
-rw-r--r-- | src/util/et/error_table.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/util/et/error_table.h b/src/util/et/error_table.h index b58502a58..ce7f4ba8b 100644 --- a/src/util/et/error_table.h +++ b/src/util/et/error_table.h @@ -1,3 +1,4 @@ +/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 1988 by the Student Information Processing Board of the * Massachusetts Institute of Technology. @@ -21,15 +22,15 @@ struct dynamic_et_list { /*@dependent@*/ const struct error_table *table; }; -#define ERRCODE_RANGE 8 /* # of bits to shift table number */ -#define BITS_PER_CHAR 6 /* # bits to shift per character in name */ +#define ERRCODE_RANGE 8 /* # of bits to shift table number */ +#define BITS_PER_CHAR 6 /* # bits to shift per character in name */ #define ERRCODE_MAX 0xFFFFFFFFUL /* Mask for maximum error table */ extern /*@observer@*/ const char *error_table_name (unsigned long) - /*@modifies internalState@*/; + /*@modifies internalState@*/; extern const char *error_table_name_r (unsigned long, - /*@out@*/ /*@returned@*/ char *outbuf) - /*@modifies outbuf@*/; + /*@out@*/ /*@returned@*/ char *outbuf) + /*@modifies outbuf@*/; #include "k5-thread.h" extern k5_mutex_t com_err_hook_lock; |