setthetime() is prototyped static; make it so.
This commit is contained in:
parent
fa993060eb
commit
91825c128d
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: date.c,v 1.32 2000/10/23 02:43:52 simonb Exp $ */
|
||||
/* $NetBSD: date.c,v 1.33 2001/07/08 05:24:50 gmcgarry Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1985, 1987, 1988, 1993
|
||||
|
@ -44,7 +44,7 @@ __COPYRIGHT(
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)date.c 8.2 (Berkeley) 4/28/95";
|
||||
#else
|
||||
__RCSID("$NetBSD: date.c,v 1.32 2000/10/23 02:43:52 simonb Exp $");
|
||||
__RCSID("$NetBSD: date.c,v 1.33 2001/07/08 05:24:50 gmcgarry Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
|
@ -131,7 +131,7 @@ main(argc, argv)
|
|||
|
||||
#define ATOI2(s) ((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
|
||||
|
||||
void
|
||||
static void
|
||||
setthetime(p)
|
||||
const char *p;
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue