summaryrefslogtreecommitdiff
path: root/src/clock.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2011-04-18 11:00:43 -0700
committerMarcel Holtmann <marcel@holtmann.org>2011-04-18 11:00:43 -0700
commit8d79dd2a0dbfc48b5f91fc1c376514692567e9b2 (patch)
tree0cd70f6eda0965a0479320c48818cd408c55a9bc /src/clock.c
parentfbc9569af18f4c6fd46413f32c57b05c4602393e (diff)
downloadconnman-8d79dd2a0dbfc48b5f91fc1c376514692567e9b2.tar.gz
connman-8d79dd2a0dbfc48b5f91fc1c376514692567e9b2.tar.bz2
connman-8d79dd2a0dbfc48b5f91fc1c376514692567e9b2.zip
core: Add skeleton for clock interfaces
Diffstat (limited to 'src/clock.c')
-rw-r--r--src/clock.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/clock.c b/src/clock.c
new file mode 100644
index 00000000..3a59f311
--- /dev/null
+++ b/src/clock.c
@@ -0,0 +1,38 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "connman.h"
+
+int __connman_clock_init(void)
+{
+ DBG("");
+
+ return 0;
+}
+
+void __connman_clock_cleanup(void)
+{
+ DBG("");
+}