diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-06 16:33:10 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-06 16:33:10 +0200 | 
| commit | 286cddccfd9d69f4bc567fc9f00898f06315cd30 (patch) | |
| tree | 22ea704d16653483a972d8b16e0c8724c3d28828 /drumgizmo | |
| parent | a1f4e968563763435027a905be8349cda1974e00 (diff) | |
Get rid of unused unistd includes. Change the rest of the sleep calls to c++.
Diffstat (limited to 'drumgizmo')
| -rw-r--r-- | drumgizmo/drumgizmoc.cc | 15 | 
1 files changed, 7 insertions, 8 deletions
| diff --git a/drumgizmo/drumgizmoc.cc b/drumgizmo/drumgizmoc.cc index 22313c0..a3df3f7 100644 --- a/drumgizmo/drumgizmoc.cc +++ b/drumgizmo/drumgizmoc.cc @@ -32,7 +32,6 @@  #include <string.h>  #include <stdio.h>  #include <stdlib.h> -#include <unistd.h>  #include <sstream>  #include <chrono>  #include <thread> @@ -49,13 +48,13 @@  static const char version_str[] = "DrumGizmo v" VERSION "\n";  static const char copyright_str[] = -    "Copyright (C) 2008-2011 Bent Bisballe Nyeng - Aasimon.org.\n" -    "This is free software.  You may redistribute copies of it under the terms " -    "of\n" -    "the GNU Lesser General Public License <http://www.gnu.org/licenses/gpl.html>.\n" -    "There is NO WARRANTY, to the extent permitted by law.\n" -    "\n" -    "Written by Bent Bisballe Nyeng (deva@aasimon.org)\n"; +	"Copyright (C) 2008-2011 Bent Bisballe Nyeng - Aasimon.org.\n" +	"This is free software.  You may redistribute copies of it under the terms " +	"of\n" +	"the GNU Lesser General Public License <http://www.gnu.org/licenses/gpl.html>.\n" +	"There is NO WARRANTY, to the extent permitted by law.\n" +	"\n" +	"Written by Bent Bisballe Nyeng (deva@aasimon.org)\n";  static const char usage_str[] =      "Usage: %s [options] drumkitfile\n" | 
