summaryrefslogtreecommitdiffstats
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.c b/common.c
index e82c5fb..01ebae9 100644
--- a/common.c
+++ b/common.c
@@ -18,7 +18,7 @@ static char *table_name_to_file(const char *name) {
return fname;
}
-extern fh fh_open(const char *name) {
+fh fh_open(const char *name) {
fh ret;
char *fname = table_name_to_file(name);
int length = strlen(fname);
@@ -67,7 +67,7 @@ extern fh fh_open(const char *name) {
return ret;
}
-extern void fh_close(fh *f) {
+void fh_close(fh *f) {
fclose(f->f);
if (f->pid > 0)
waitpid(f->pid, NULL, 0);