cleanup: remove old files.

This commit is contained in:
Adam Sutton 2013-01-16 09:47:35 +00:00
parent a57eb8b193
commit b7ad9f3ad0
3 changed files with 0 additions and 30 deletions

View file

@ -1,4 +0,0 @@
const char *tvheadend_dataroot(void)
{
return (void *)0;
}

View file

@ -1,10 +0,0 @@
#include "config.h"
#include "filebundle.h"
filebundle_entry_t *filebundle_root = NULL;
const char *tvheadend_dataroot(void)
{
return TVHEADEND_DATADIR;
}

View file

@ -1,16 +0,0 @@
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include "filebundle.h"
filebundle_entry_t *filebundle_root = NULL;
const char *tvheadend_dataroot(void)
{
static char cwd[256] = { 0 };
if (!*cwd) {
assert(getcwd(cwd, 254));
}
return cwd;
}