diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-19 19:39:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-19 19:39:42 +0000 |
commit | 3923126b85f9e8a77cab9a41b5a62125acd5b4cd (patch) | |
tree | 1a8b19c5db03f8c989fc8228811837b182feb7a3 /usr.bin/patch | |
parent | cc03bdb70090357d2393b6ec82e3cde4d5ce5edd (diff) |
We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.
Diffstat (limited to 'usr.bin/patch')
-rw-r--r-- | usr.bin/patch/backupfile.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/patch/backupfile.h b/usr.bin/patch/backupfile.h index 16881d2633b..3773aa12b28 100644 --- a/usr.bin/patch/backupfile.h +++ b/usr.bin/patch/backupfile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: backupfile.h,v 1.2 1996/06/10 11:21:26 niklas Exp $*/ +/* $OpenBSD: backupfile.h,v 1.3 2002/02/19 19:39:39 millert Exp $*/ /* backupfile.h -- declarations for making Emacs style backup file names Copyright (C) 1990 Free Software Foundation, Inc. @@ -31,10 +31,5 @@ enum backup_type extern enum backup_type backup_type; extern char *simple_backup_suffix; -#ifdef __STDC__ char *find_backup_file_name (char *file); enum backup_type get_version (char *version); -#else -char *find_backup_file_name (); -enum backup_type get_version (); -#endif |