diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 00:00:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 00:00:00 +0000 |
commit | d6f987883e262363e2689803a36a7c32736476cc (patch) | |
tree | 1158893c08ead8fccdd4ac523d3492f68c4c1cda /usr.bin/file/file.h | |
parent | 94ea65f5c4b7bedff1d6c9caca5363f926955d43 (diff) |
rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms
Diffstat (limited to 'usr.bin/file/file.h')
-rw-r--r-- | usr.bin/file/file.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/usr.bin/file/file.h b/usr.bin/file/file.h index 5cef2e7e2b3..dd191bad58e 100644 --- a/usr.bin/file/file.h +++ b/usr.bin/file/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.21 2009/08/27 16:26:43 deraadt Exp $ */ +/* $OpenBSD: file.h,v 1.22 2009/10/27 23:59:37 deraadt Exp $ */ /* * Copyright (c) Ian F. Darwin 1986-1995. * Software written by Ian F. Darwin and others; @@ -28,7 +28,7 @@ */ /* * file.h - definitions for file(1) program - * @(#)$Id: file.h,v 1.21 2009/08/27 16:26:43 deraadt Exp $ + * @(#)$Id: file.h,v 1.22 2009/10/27 23:59:37 deraadt Exp $ */ #ifndef __file_h__ @@ -382,12 +382,4 @@ int asprintf(char **ptr, const char *format_string, ...); #define O_BINARY 0 #endif -#if defined(__GNUC__) && (__GNUC__ >= 3) -static const char *rcsid(const char *) __attribute__((__used__)); -#endif -#define FILE_RCSID(id) \ -static const char *rcsid(const char *p) { \ - return rcsid(p = id); \ -} - #endif /* __file_h__ */ |