tizen 2.3.1 release
[external/buxton.git] / src / shared / log.c
1 /*
2  * This file is part of buxton.
3  *
4  * Copyright (C) 2013 Intel Corporation
5  *
6  * buxton is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1
9  * of the License, or (at your option) any later version.
10  */
11
12 #ifdef HAVE_CONFIG_H
13         #include "config.h"
14 #endif
15
16 #include <stdio.h>
17 #include <stdarg.h>
18
19 void buxton_log(const char *fmt, ...)
20 {
21         va_list args;
22
23         va_start(args, fmt);
24         vfprintf(stderr, fmt, args);
25         va_end(args);
26 }
27
28 /*
29  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
30  *
31  * Local variables:
32  * c-basic-offset: 8
33  * tab-width: 8
34  * indent-tabs-mode: t
35  * End:
36  *
37  * vi: set shiftwidth=8 tabstop=8 noexpandtab:
38  * :indentSize=8:tabSize=8:noTabs=false:
39  */