summaryrefslogtreecommitdiff
path: root/stagit-index.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-04-27 16:40:51 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-04-27 16:40:51 +0200
commit70b777831a80a7a204f02697563d39dba612c8c4 (patch)
treedae39afd9015758db3ea2fc24514025afd0af222 /stagit-index.c
parent86bbe822114c01d9c1bcfe6950463ee1c73e39a5 (diff)
stagit-index: remove unused efopen function
Diffstat (limited to 'stagit-index.c')
-rw-r--r--stagit-index.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/stagit-index.c b/stagit-index.c
index 8f8ffc2..4faa264 100644
--- a/stagit-index.c
+++ b/stagit-index.c
@@ -24,17 +24,6 @@ static char description[255] = "Repositories";
static char name[255];
static char owner[255];
-FILE *
-efopen(const char *name, const char *flags)
-{
- FILE *fp;
-
- if (!(fp = fopen(name, flags)))
- err(1, "fopen");
-
- return fp;
-}
-
/* Escape characters below as HTML 2.0 / XML 1.0. */
void
xmlencode(FILE *fp, const char *s, size_t len)