/* $Id$ * * Initialize libmoira * * Copyright (C) 1987-1990 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . */ #include #include #include "mr_private.h" RCSID("$Header$"); int mr_inited = 0; void mr_init(void) { if (mr_inited) return; initialize_sms_error_table(); initialize_krb_error_table(); initialize_ureg_error_table(); mr_inited = 1; }