NetBSD doesn't have a utrace syscall, so don't define that if

__NETBSD_SYSCALLS is defined.
This commit is contained in:
John Birrell 1998-03-09 07:00:38 +00:00
parent 9dbdb44326
commit e4193688da
1 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: malloc.c,v 1.33 1997/12/15 02:12:42 jb Exp $
* $Id: malloc.c,v 1.34 1997/12/31 03:15:06 alex Exp $
*
*/
@ -47,7 +47,9 @@
# define malloc_pageshift 12U
# define malloc_minsize 16U
# endif
# if !defined(__NETBSD_SYSCALLS)
# define HAS_UTRACE
# endif
# if defined(_THREAD_SAFE)
# include <pthread.h>
# include "pthread_private.h"