summaryrefslogtreecommitdiff
path: root/src/timezone.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2011-04-18 13:05:52 -0700
committerMarcel Holtmann <marcel@holtmann.org>2011-04-18 13:05:52 -0700
commite8797320e8cf680e9c84b5462f0ba9c58a05b46e (patch)
tree5f51ebab16f48c564dff2480534bc94493cd7914 /src/timezone.c
parent702cd0ee80aca8f9463a0d967da6ec9df595f509 (diff)
downloadconnman-e8797320e8cf680e9c84b5462f0ba9c58a05b46e.tar.gz
connman-e8797320e8cf680e9c84b5462f0ba9c58a05b46e.tar.bz2
connman-e8797320e8cf680e9c84b5462f0ba9c58a05b46e.zip
core: Add skeleton for timezone lookup
Diffstat (limited to 'src/timezone.c')
-rw-r--r--src/timezone.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/timezone.c b/src/timezone.c
new file mode 100644
index 00000000..339542e4
--- /dev/null
+++ b/src/timezone.c
@@ -0,0 +1,31 @@
+/*
+ *
+ * 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"
+
+char *__connman_timezone_lookup(void)
+{
+ return NULL;
+}