summaryrefslogtreecommitdiff
path: root/libs/rubberband
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-07-10 18:37:26 +0000
committerDoug McLain <doug@nostar.net>2008-07-10 18:37:26 +0000
commit181c4a163b7b5da7ec137f97adba5dab3d7d2320 (patch)
treeb17ff7d69da2b8645c99a067a25bcc707e1b0c8c /libs/rubberband
parentf2a604f820673c6ac32a3d07351facce5b92090e (diff)
Replaced some c includes with their c++ wrappers
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3584 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/rubberband')
-rw-r--r--libs/rubberband/src/sysutils.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/rubberband/src/sysutils.cpp b/libs/rubberband/src/sysutils.cpp
index 120b936729..d52eee9511 100644
--- a/libs/rubberband/src/sysutils.cpp
+++ b/libs/rubberband/src/sysutils.cpp
@@ -20,14 +20,13 @@
#ifdef __APPLE__
#include <sys/sysctl.h>
#else /* !__APPLE__, !_WIN32 */
-#include <stdio.h>
-#include <string.h>
+#include <cstdio>
+#include <cstring>
#endif /* !__APPLE__, !_WIN32 */
#endif /* !_WIN32 */
#include <cstdlib>
#include <iostream>
-#include <stdlib.h>
namespace RubberBand {