diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-10-29 20:15:54 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-10-29 20:15:54 +0200 |
commit | 4c8037421697c904a50d8a847ed5a2560c468470 (patch) | |
tree | 8f3ce8728593fcd92efd1c0450f71cb2360b380a /tools/wispr.c | |
parent | 663ed5a986d0d139b4581fd2701d4dd59dd0c39a (diff) | |
download | connman-4c8037421697c904a50d8a847ed5a2560c468470.tar.gz connman-4c8037421697c904a50d8a847ed5a2560c468470.tar.bz2 connman-4c8037421697c904a50d8a847ed5a2560c468470.zip |
Add skeleton for WISPr command line client
Diffstat (limited to 'tools/wispr.c')
-rw-r--r-- | tools/wispr.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/wispr.c b/tools/wispr.c new file mode 100644 index 00000000..51995796 --- /dev/null +++ b/tools/wispr.c @@ -0,0 +1,29 @@ +/* + * + * 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 + +int main(int argc, char *argv[]) +{ + return 0; +} |