Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / csa / debug.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: debug.c /main/3 1996/11/21 20:00:19 drk $ */
24 /*
25  *  (c) Copyright 1993, 1994 Hewlett-Packard Company
26  *  (c) Copyright 1993, 1994 International Business Machines Corp.
27  *  (c) Copyright 1993, 1994 Novell, Inc.
28  *  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
29  */
30
31 #include <stdio.h>
32
33 #define X_INCLUDE_TIME_H
34 #define XOS_USE_NO_LOCKING
35 #include <X11/Xos_r.h>
36
37 #include <syslog.h>
38
39 static int inited = 0;
40
41 extern void
42 _DtCm_print_tick(time_t t)
43 {
44         char *a;
45         _Xctimeparams ctime_buf;
46  
47         a = _XCtime(&t, ctime_buf);
48         (void) fprintf (stderr, "%d %s\n", t, a);
49 }
50
51 extern void
52 _DtCm_print_errmsg(const char *msg)
53 {
54         if (inited == 0) {
55                 openlog("libcsa", 0, 0);
56                 inited = 1;
57         }
58
59 #ifdef CM_DEBUG
60         fprintf(stderr, "libcsa: %s\n", msg);
61 #else
62         syslog(LOG_ERR, "%s\n", msg);
63 #endif
64
65 }
66