]> andersk Git - moira.git/blame - lib/mr_init.c
don't include infodefs.h (now in sms_app.h)
[moira.git] / lib / mr_init.c
CommitLineData
0fa91a0a 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 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
12static char *rcsid_sms_init_c = "$Header$";
13#endif lint
14
babbc197 15#include <mit-copyright.h>
0fa91a0a 16#include "sms_private.h"
17
18int sms_inited = 0;
19
20sms_init()
21{
22 if (sms_inited) return;
23
24 gdb_init();
25 init_sms_err_tbl();
26 init_krb_err_tbl();
27 sms_inited=1;
28}
This page took 0.055134 seconds and 5 git commands to generate.