Protect internal mcount symbol from lint(1)
authortholo <tholo@openbsd.org>
Mon, 25 Mar 1996 22:11:05 +0000 (22:11 +0000)
committertholo <tholo@openbsd.org>
Mon, 25 Mar 1996 22:11:05 +0000 (22:11 +0000)
Use __asm, not asm

lib/libc/gmon/gmon.c
lib/libc/gmon/mcount.c

index 0ad73fa..45b14fd 100644 (file)
@@ -52,7 +52,7 @@ static char rcsid[] = "$NetBSD: gmon.c,v 1.5 1995/11/21 22:23:47 jtc Exp $";
 #include <limits.h>
 #include <unistd.h>
 
-extern char *minbrk asm ("minbrk");
+extern char *minbrk __asm ("minbrk");
 
 struct gmonparam _gmonparam = { GMON_PROF_OFF };
 
index 6ec117b..fb8f1ac 100644 (file)
@@ -177,8 +177,10 @@ overflow:
        return;
 }
 
+#ifndef lint
 /*
  * Actual definition of mcount function.  Defined in <machine/profile.h>,
  * which is included by <sys/gmon.h>.
  */
 MCOUNT
+#endif