diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-05 21:47:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-05 21:47:34 +0000 |
commit | ad98de6f3bde79382fa6454e01e4c1d928dd0b6d (patch) | |
tree | 7408092f96cf8f81439a4a2c0c8be076ba1f8747 /usr.bin/patch/backupfile.c | |
parent | 77201bcf7b52541604d623ea5066123d841bce72 (diff) |
spacing
Diffstat (limited to 'usr.bin/patch/backupfile.c')
-rw-r--r-- | usr.bin/patch/backupfile.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/patch/backupfile.c b/usr.bin/patch/backupfile.c index 5863e9b1b14..856d2a6f948 100644 --- a/usr.bin/patch/backupfile.c +++ b/usr.bin/patch/backupfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: backupfile.c,v 1.17 2003/08/01 20:30:48 otto Exp $ */ +/* $OpenBSD: backupfile.c,v 1.18 2004/08/05 21:47:24 deraadt Exp $ */ /* * backupfile.c -- make Emacs style backup file names Copyright (C) 1990 Free @@ -17,7 +17,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: backupfile.c,v 1.17 2003/08/01 20:30:48 otto Exp $"; +static const char rcsid[] = "$OpenBSD: backupfile.c,v 1.18 2004/08/05 21:47:24 deraadt Exp $"; #endif /* not lint */ #include <ctype.h> @@ -40,14 +40,14 @@ enum backup_type backup_type = none; * The extension added to file names to produce a simple (as opposed to * numbered) backup file name. */ -char *simple_backup_suffix = "~"; - -static char *concat(const char *, const char *); -static char *make_version_name(const char *, int); -static int max_backup_version(const char *, const char *); -static int version_number(const char *, const char *, int); -static int argmatch(const char *, const char **); -static void invalid_arg(const char *, const char *, int); +char *simple_backup_suffix = "~"; + +static char *concat(const char *, const char *); +static char *make_version_name(const char *, int); +static int max_backup_version(const char *, const char *); +static int version_number(const char *, const char *, int); +static int argmatch(const char *, const char **); +static void invalid_arg(const char *, const char *, int); /* * Return the name of the new backup file for file FILE, allocated with |