=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/file/file.h,v retrieving revision 1.21 retrieving revision 1.22 diff -c -r1.21 -r1.22 *** src/usr.bin/file/file.h 2009/08/27 16:26:43 1.21 --- src/usr.bin/file/file.h 2009/10/27 23:59:37 1.22 *************** *** 1,4 **** ! /* $OpenBSD: file.h,v 1.21 2009/08/27 16:26:43 deraadt Exp $ */ /* * Copyright (c) Ian F. Darwin 1986-1995. * Software written by Ian F. Darwin and others; --- 1,4 ---- ! /* $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,34 **** */ /* * file.h - definitions for file(1) program ! * @(#)$Id: file.h,v 1.21 2009/08/27 16:26:43 deraadt Exp $ */ #ifndef __file_h__ --- 28,34 ---- */ /* * file.h - definitions for file(1) program ! * @(#)$Id: file.h,v 1.22 2009/10/27 23:59:37 deraadt Exp $ */ #ifndef __file_h__ *************** *** 381,393 **** #ifndef O_BINARY #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__ */ --- 381,385 ----