new template
[unix-history] / usr / src / games / trek / out.c
CommitLineData
b6f0a7e4
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
e53c79e5 7#ifndef lint
b6f0a7e4 8static char sccsid[] = "@(#)out.c 5.1 (Berkeley) %G%";
e53c79e5
KM
9#endif not lint
10
11# include "trek.h"
12
13/*
14** Announce Device Out
15*/
16
17out(dev)
18int dev;
19{
20 register struct device *d;
21
22 d = &Device[dev];
23 printf("%s reports %s ", d->person, d->name);
24 if (d->name[length(d->name) - 1] == 's')
25 printf("are");
26 else
27 printf("is");
28 printf(" damaged\n");
29}