aboutsummaryrefslogtreecommitdiff
path: root/src/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/utils.c b/src/utils.c
index 4815a0bc..c3071266 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -40,13 +40,6 @@
#include <windows.h>
#endif
-void stripReturnChar(char *string)
-{
- while (string && (string = strchr(string, '\n'))) {
- *string = ' ';
- }
-}
-
void my_usleep(long usec)
{
#ifdef WIN32