diff options
Diffstat (limited to 'usr.bin/ar/ar.c')
-rw-r--r-- | usr.bin/ar/ar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c index b2c85fc795371..f27ff84c43bb8 100644 --- a/usr.bin/ar/ar.c +++ b/usr.bin/ar/ar.c @@ -33,17 +33,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ar.c,v 1.6 1997/06/23 06:41:30 charnier Exp $ + * $Id$ */ #ifndef lint -static const char copyright[] = +static char copyright[] = "@(#) Copyright (c) 1990, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static const char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94"; +static char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ #include <sys/param.h> @@ -80,7 +80,7 @@ main(argc, argv) { int c; char *p; - int (*fcall) __P((char **)) = NULL; + int (*fcall) __P((char **)); (void) setlocale(LC_TIME, "");; |