summaryrefslogtreecommitdiffstats
path: root/src/util/et/init_et.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/et/init_et.c')
-rw-r--r--src/util/et/init_et.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/util/et/init_et.c b/src/util/et/init_et.c
index c47acb7bbf..b0a4064031 100644
--- a/src/util/et/init_et.c
+++ b/src/util/et/init_et.c
@@ -36,11 +36,11 @@ struct foobar {
};
int init_error_table(msgs, base, count)
- const char FAR * const FAR * msgs;
+ const char * const * msgs;
int base;
int count;
{
- struct foobar FAR * new_et;
+ struct foobar * new_et;
if (!base || !count || !msgs)
return 0;
@@ -59,9 +59,9 @@ int init_error_table(msgs, base, count)
}
extern errcode_t KRB5_CALLCONV et_init(ectx)
- et_ctx FAR *ectx;
+ et_ctx *ectx;
{
- struct et_context FAR *ctx;
+ struct et_context *ctx;
ctx = malloc(sizeof(struct et_context));
if (!ctx)
@@ -77,7 +77,7 @@ extern errcode_t KRB5_CALLCONV et_init(ectx)
extern void KRB5_CALLCONV et_shutdown(ectx)
et_ctx ectx;
{
- struct et_list FAR *p, FAR *n;
+ struct et_list *p, *n;
p = ectx->tables;
while (p) {
@@ -90,9 +90,9 @@ extern void KRB5_CALLCONV et_shutdown(ectx)
extern errcode_t KRB5_CALLCONV et_add_error_table(ectx, tbl)
et_ctx ectx;
- struct error_table FAR *tbl;
+ struct error_table *tbl;
{
- struct et_list FAR *e;
+ struct et_list *e;
e = malloc(sizeof(struct et_list));
if (!e)