diff options
author | Xin LI <delphij@FreeBSD.org> | 2010-05-06 17:06:36 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2010-05-06 17:06:36 +0000 |
commit | 3549ef2f2b5be31492b26030855c8903fc4f959f (patch) | |
tree | e19d7a5511df87d5ad70a07eeb5c62500e066a1f /usr.bin/find/main.c | |
parent | e86a8937dc51680b8e944e8f07f60684cf87daad (diff) | |
download | src-3549ef2f2b5be31492b26030855c8903fc4f959f.tar.gz src-3549ef2f2b5be31492b26030855c8903fc4f959f.zip |
Revert r207677 which is considered a violation of style(9).
Pointed out by: bde
Pointy hat to: delphij
Notes
Notes:
svn path=/head/; revision=207705
Diffstat (limited to 'usr.bin/find/main.c')
-rw-r--r-- | usr.bin/find/main.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c index 7d4c24ac41a0..8e2b42cd298c 100644 --- a/usr.bin/find/main.c +++ b/usr.bin/find/main.c @@ -32,8 +32,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)main.c 8.4 (Berkeley) 5/4/95 */ #ifndef lint @@ -42,6 +40,12 @@ char copyright[] = The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ +#ifndef lint +#if 0 +static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95"; +#endif +#endif /* not lint */ + #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); |