]> andersk Git - moira.git/blame - lib/mr_init.c
Change `SMS' to `Moira' where possible.
[moira.git] / lib / mr_init.c
CommitLineData
0fa91a0a 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
8defc06b 6 * Copyright (C) 1987, 1990 by the Massachusetts Institute of Technology
babbc197 7 * For copying and distribution information, please see the file
8 * <mit-copyright.h>.
0fa91a0a 9 */
10
11#ifndef lint
59ec8dae 12static char *rcsid_mr_init_c = "$Header$";
a43ce477 13#endif
0fa91a0a 14
babbc197 15#include <mit-copyright.h>
8defc06b 16#include "mr_private.h"
0fa91a0a 17
8defc06b 18int mr_inited = 0;
0fa91a0a 19
00fe263a 20/* the reference to link_against_the_moira_version_of_gdb is to make
21 * sure that this is built with the proper libraries.
22 */
5eaef520 23mr_init(void)
0fa91a0a 24{
5eaef520 25 extern int link_against_the_moira_version_of_gdb;
26 if (mr_inited)
27 return;
28
29 gdb_init();
30 initialize_sms_error_table();
31 initialize_krb_error_table();
32 link_against_the_moira_version_of_gdb = 0;
33 mr_inited = 1;
0fa91a0a 34}
This page took 0.087274 seconds and 5 git commands to generate.