aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-26 20:34:33 +0100
committerMax Kellermann <max@duempel.org>2008-10-26 20:34:33 +0100
commit97a9c7a8e094f830e70fdb479425c96e182f8b5e (patch)
tree1edf28e67a2de1b3e1cdb589164a3addc9f8f0f8
parent23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3 (diff)
downloadmpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.tar.gz
mpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.tar.xz
mpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.zip
input_file: removed global constructor
The global constructor is empty, and can be removed.
Diffstat (limited to '')
-rw-r--r--src/input_file.c4
-rw-r--r--src/input_file.h2
-rw-r--r--src/input_stream.c1
3 files changed, 0 insertions, 7 deletions
diff --git a/src/input_file.c b/src/input_file.c
index db09b0570..114fac49b 100644
--- a/src/input_file.c
+++ b/src/input_file.c
@@ -21,10 +21,6 @@
#include "log.h"
#include "os_compat.h"
-void inputStream_initFile(void)
-{
-}
-
static int
inputStream_fileSeek(struct input_stream *is, long offset, int whence);
diff --git a/src/input_file.h b/src/input_file.h
index e3b97db3d..177df477a 100644
--- a/src/input_file.h
+++ b/src/input_file.h
@@ -21,8 +21,6 @@
#include "input_stream.h"
-void inputStream_initFile(void);
-
int inputStream_fileOpen(struct input_stream *inStream, char *filename);
#endif
diff --git a/src/input_stream.c b/src/input_stream.c
index 607cfc358..01b22028c 100644
--- a/src/input_stream.c
+++ b/src/input_stream.c
@@ -29,7 +29,6 @@
void initInputStream(void)
{
- inputStream_initFile();
#ifdef HAVE_CURL
input_curl_global_init();
#endif