input_file: removed global constructor
The global constructor is empty, and can be removed.
This commit is contained in:
parent
23552f89cc
commit
97a9c7a8e0
@ -21,10 +21,6 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "os_compat.h"
|
#include "os_compat.h"
|
||||||
|
|
||||||
void inputStream_initFile(void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
inputStream_fileSeek(struct input_stream *is, long offset, int whence);
|
inputStream_fileSeek(struct input_stream *is, long offset, int whence);
|
||||||
|
|
||||||
|
@ -21,8 +21,6 @@
|
|||||||
|
|
||||||
#include "input_stream.h"
|
#include "input_stream.h"
|
||||||
|
|
||||||
void inputStream_initFile(void);
|
|
||||||
|
|
||||||
int inputStream_fileOpen(struct input_stream *inStream, char *filename);
|
int inputStream_fileOpen(struct input_stream *inStream, char *filename);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
|
|
||||||
void initInputStream(void)
|
void initInputStream(void)
|
||||||
{
|
{
|
||||||
inputStream_initFile();
|
|
||||||
#ifdef HAVE_CURL
|
#ifdef HAVE_CURL
|
||||||
input_curl_global_init();
|
input_curl_global_init();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user