summaryrefslogtreecommitdiff
path: root/lib/csu/vax
diff options
context:
space:
mode:
authorHeikki Korpela <heko@cvs.openbsd.org>2001-08-12 12:03:04 +0000
committerHeikki Korpela <heko@cvs.openbsd.org>2001-08-12 12:03:04 +0000
commit8733d65e598e20f5a4415a710e9c51ab3a3d323d (patch)
tree39173461770e11f8ad331e9aa18365fc4ab2d19f /lib/csu/vax
parentbbbc80b14c0c9c05eb40dfe595d4893002a710bf (diff)
#(endif|else) foo is incorrect, make it #endif /* foo */
deraadt@ ok
Diffstat (limited to 'lib/csu/vax')
-rw-r--r--lib/csu/vax/crt0.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csu/vax/crt0.c b/lib/csu/vax/crt0.c
index 509c4882ed8..e2ea4200ba1 100644
--- a/lib/csu/vax/crt0.c
+++ b/lib/csu/vax/crt0.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crt0.c,v 1.3 1999/08/20 14:11:36 niklas Exp $ */
+/* $OpenBSD: crt0.c,v 1.4 2001/08/12 12:03:01 heko Exp $ */
/* $NetBSD: crt0.c,v 1.1.2.1 1995/10/15 19:40:04 ragge 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:36 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>
@@ -89,7 +89,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));