In comments in source code (especially older code), one may see in the header comments the filename, date and perhaps other info in this special format:
/* @(#)fdlibm.h 1.5 95/01/18 */
(see also: http://www.google.com/codesearch?q=%22%40%28%23%29%22&hl=en&btnG=Search+Code )
This is quite similar (or perhaps related?) to the RCS-like string "$Id$" ($Header$, etc). I thought the "file" command-line utility or similar would look for these "magic" strings in the source, but that's not the case.
Is there a utility / program (other than 'grep'!) that actually uses these strings prefixed by "@(#)"?