diff options
author | charnier <charnier@FreeBSD.org> | 1997-10-10 06:23:42 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-10-10 06:23:42 +0000 |
commit | c4198a70c7f56d54ec13a8e63e0f03bb8ad51d5d (patch) | |
tree | 1eecca23afdea0a229b2d419a8c65df14f1b1190 /usr.sbin/pw/psdate.c | |
parent | 272f35378bb5e1abaf91ce93316ca11f0cdf70fc (diff) | |
download | FreeBSD-src-c4198a70c7f56d54ec13a8e63e0f03bb8ad51d5d.zip FreeBSD-src-c4198a70c7f56d54ec13a8e63e0f03bb8ad51d5d.tar.gz |
Use err(3) instead of local redefinition. Add rcsid string.
Diffstat (limited to 'usr.sbin/pw/psdate.c')
-rw-r--r-- | usr.sbin/pw/psdate.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/pw/psdate.c b/usr.sbin/pw/psdate.c index 14b7340..9b9cf78 100644 --- a/usr.sbin/pw/psdate.c +++ b/usr.sbin/pw/psdate.c @@ -22,10 +22,13 @@ * 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. - * - * $Id$ */ +#ifndef lint +static const char rcsid[] = + "$Id$"; +#endif /* not lint */ + #include <stdio.h> #include <stdlib.h> #include <string.h> |