diff options
author | 2004-08-05 21:47:24 +0000 | |
---|---|---|
committer | 2004-08-05 21:47:24 +0000 | |
commit | ec347eb826b2d724ceb3a04f3611d5172b88b13a (patch) | |
tree | 8592b66222cff28403cddd6a27f66a68e93fad47 /usr.bin/patch/backupfile.c | |
parent | sync (diff) | |
download | wireguard-openbsd-ec347eb826b2d724ceb3a04f3611d5172b88b13a.tar.xz wireguard-openbsd-ec347eb826b2d724ceb3a04f3611d5172b88b13a.zip |
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 |