one more warning suppression when compiling the test code in userspace.

This commit is contained in:
Luigi Rizzo 2015-07-10 19:18:49 +00:00
parent e25716b7cc
commit e38e277fc4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285361

View File

@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$");
#include "dn_heap.h"
#define log(x, arg...) fprintf(stderr, ## arg)
#define panic(x...) fprintf(stderr, ## x), exit(1)
#define MALLOC_DEFINE(a, b, c)
#define MALLOC_DEFINE(a, b, c) volatile int __dummy__ ## a __attribute__((__unused__))
static void *my_malloc(int s) { return malloc(s); }
static void my_free(void *p) { free(p); }
#define malloc(s, t, w) my_malloc(s)