aboutsummaryrefslogtreecommitdiffstats
path: root/src/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/console.c')
-rw-r--r--src/console.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/console.c b/src/console.c
deleted file mode 100644
index 4a127c3e..00000000
--- a/src/console.c
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2011-2021 David Robillard <d@drobilla.net>
-// SPDX-License-Identifier: ISC
-
-#include "console.h"
-
-#include "serd/serd.h"
-
-#ifdef _WIN32
-# ifdef _MSC_VER
-# define WIN32_LEAN_AND_MEAN 1
-# endif
-# include <fcntl.h>
-# include <io.h>
-#endif
-
-void
-serd_set_stream_utf8_mode(FILE* const stream)
-{
-#ifdef _WIN32
- _setmode(_fileno(stream), _O_BINARY);
-#else
- (void)stream;
-#endif
-}
-
-int
-serd_print_version(const char* const program)
-{
- printf("%s %d.%d.%d <http://drobilla.net/software/serd>\n",
- program,
- SERD_MAJOR_VERSION,
- SERD_MINOR_VERSION,
- SERD_MICRO_VERSION);
-
- printf("Copyright 2011-2023 David Robillard <d@drobilla.net>.\n"
- "License: <http://www.opensource.org/licenses/isc>\n"
- "This is free software; you are free to change and redistribute it.\n"
- "There is NO WARRANTY, to the extent permitted by law.\n");
-
- return 0;
-}