summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/mg/def.h3
-rw-r--r--usr.bin/mg/fileio.c3
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h
index 6a752d568b9..8a0df64e3e3 100644
--- a/usr.bin/mg/def.h
+++ b/usr.bin/mg/def.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: def.h,v 1.129 2012/11/06 18:04:10 florian Exp $ */
+/* $OpenBSD: def.h,v 1.130 2012/11/27 19:45:01 jasper Exp $ */
/* This file is in the public domain. */
@@ -452,6 +452,7 @@ int fchecktime(struct buffer *);
int fupdstat(struct buffer *);
int backuptohomedir(int, int);
int toggleleavetmp(int, int);
+char *expandtilde(const char *);
/* kbd.c X */
int do_meta(int, int);
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c
index 0b63be867fc..717c4a9da78 100644
--- a/usr.bin/mg/fileio.c
+++ b/usr.bin/mg/fileio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fileio.c,v 1.94 2012/07/10 06:28:12 lum Exp $ */
+/* $OpenBSD: fileio.c,v 1.95 2012/11/27 19:45:01 jasper Exp $ */
/* This file is in the public domain. */
@@ -25,7 +25,6 @@
static char *bkuplocation(const char *);
static int bkupleavetmp(const char *);
-char *expandtilde(const char *);
static char *bkupdir;
static int leavetmp = 0; /* 1 = leave any '~' files in tmp dir */