]> andersk Git - moira.git/blame_incremental - lib/mr_init.c
Command line printer manipulation client, and build goo.
[moira.git] / lib / mr_init.c
... / ...
CommitLineData
1/* $Id$
2 *
3 * Initialize libmoira
4 *
5 * Copyright (C) 1987-1990 by the Massachusetts Institute of Technology
6 * For copying and distribution information, please see the file
7 * <mit-copyright.h>.
8 */
9
10#include <mit-copyright.h>
11#include <moira.h>
12#include "mr_private.h"
13
14RCSID("$Header$");
15
16int mr_inited = 0;
17
18void mr_init(void)
19{
20 if (mr_inited)
21 return;
22
23 initialize_sms_error_table();
24 initialize_krb_error_table();
25 initialize_ureg_error_table();
26 mr_inited = 1;
27}
This page took 0.032049 seconds and 5 git commands to generate.