diff options
Diffstat (limited to 'games/pig/pig.c')
-rw-r--r-- | games/pig/pig.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/games/pig/pig.c b/games/pig/pig.c index f0d113f..627fab0 100644 --- a/games/pig/pig.c +++ b/games/pig/pig.c @@ -29,18 +29,20 @@ * 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. - * - * $FreeBSD$ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1992, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)pig.c 8.2 (Berkeley) 5/4/95"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> |