summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorKjell Wooding <kjell@cvs.openbsd.org>2006-05-03 22:19:42 +0000
committerKjell Wooding <kjell@cvs.openbsd.org>2006-05-03 22:19:42 +0000
commit47cb23b86be7d4e2bcc8106276e0bae9faa51099 (patch)
tree6dc048b54b6ce5881185608ba5fbfaefe5f11974 /usr.bin
parentd271b6812612822db88add8a08a3ff0ad016494c (diff)
Do some KNF, clean up some unused junk that has lying around for 40-odd
cvs revisions, and fix a few comments to match reality
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/mg/fileio.c40
-rw-r--r--usr.bin/mg/sysdef.h3
2 files changed, 19 insertions, 24 deletions
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c
index a6483a63c93..fffc572c4d3 100644
--- a/usr.bin/mg/fileio.c
+++ b/usr.bin/mg/fileio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fileio.c,v 1.71 2006/05/03 21:15:59 kjell Exp $ */
+/* $OpenBSD: fileio.c,v 1.72 2006/05/03 22:19:41 kjell Exp $ */
/* This file is in the public domain. */
@@ -8,18 +8,21 @@
#include "def.h"
+#include <sys/dir.h>
+#include <sys/resource.h>
+#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
-#include <sys/resource.h>
#include <sys/wait.h>
-#include "kbd.h"
+
+#include <fcntl.h>
#include <limits.h>
-#include <sys/stat.h>
-#include <sys/dir.h>
+#include <pwd.h>
#include <string.h>
-#include <fcntl.h>
#include <unistd.h>
+#include "kbd.h"
+
static FILE *ffp;
/*
@@ -235,16 +238,6 @@ fbackupfile(const char *fn)
* name or case adjustments. The same file should be referred to even if the
* working directory changes.
*/
-#ifdef SYMBLINK
-#include <sys/types.h>
-#include <sys/stat.h>
-#ifndef MAXLINK
-#define MAXLINK 8 /* maximum symbolic links to follow */
-#endif
-#endif
-#include <pwd.h>
-extern char *wdir;
-
char *
adjustname(const char *fn)
{
@@ -413,12 +406,15 @@ make_file_list(char *buf)
char prefixx[NFILEN + 1];
/*
- * We need three different strings: dir - the name of the directory
- * containing what the user typed. Must be a real unix file name,
- * e.g. no ~user, etc.. Must not end in /. prefix - the portion of
- * what the user typed that is before the names we are going to find
- * in the directory. Must have a trailing / if the user typed it.
- * names from the directory. We open dir, and return prefix
+ * We need three different strings:
+
+ * dir - the name of the directory containing what the user typed.
+ * Must be a real unix file name, e.g. no ~user, etc..
+ * Must not end in /.
+ * prefix - the portion of what the user typed that is before the
+ * names we are going to find in the directory. Must have a
+ * trailing / if the user typed it.
+ * names from the directory - We open dir, and return prefix
* concatenated with names.
*/
diff --git a/usr.bin/mg/sysdef.h b/usr.bin/mg/sysdef.h
index af4d7048af6..d03b4ef4d8b 100644
--- a/usr.bin/mg/sysdef.h
+++ b/usr.bin/mg/sysdef.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysdef.h,v 1.13 2005/06/14 18:14:40 kjell Exp $ */
+/* $OpenBSD: sysdef.h,v 1.14 2006/05/03 22:19:41 kjell Exp $ */
/* This file is in the public domain. */
@@ -14,7 +14,6 @@
#define KBLOCK 8192 /* Kill grow. */
#define GOOD 0 /* Good exit status. */
-#define SYMBLINK 1 /* Handle symbolic links. */
typedef int RSIZE; /* Type for file/region sizes */
typedef short KCHAR; /* Type for internal keystrokes */