diff options
Diffstat (limited to 'lib/csu/m68k/crt0.c')
-rw-r--r-- | lib/csu/m68k/crt0.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csu/m68k/crt0.c b/lib/csu/m68k/crt0.c index bff5634e3b5..dc590f76057 100644 --- a/lib/csu/m68k/crt0.c +++ b/lib/csu/m68k/crt0.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crt0.c,v 1.3 1999/08/20 14:11:35 niklas Exp $ */ +/* $OpenBSD: crt0.c,v 1.4 2001/08/12 12:03:01 heko Exp $ */ /* $NetBSD: crt0.c,v 1.14 1995/06/03 13:16:11 pk Exp $ */ /* * Copyright (c) 1993 Paul Kranenburg @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: crt0.c,v 1.3 1999/08/20 14:11:35 niklas Exp $"; +static char rcsid[] = "$OpenBSD: crt0.c,v 1.4 2001/08/12 12:03:01 heko Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -88,7 +88,7 @@ asm("eprol:"); #ifdef MCRT0 atexit(_mcleanup); monstartup((u_long)&eprol, (u_long)&etext); -#endif MCRT0 +#endif /* MCRT0 */ asm ("__callmain:"); /* Defined for the benefit of debuggers */ exit(main(kfp->kargc, argv, environ)); |