summaryrefslogtreecommitdiffstats
path: root/src/tests/umalloc_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/umalloc_test.c')
-rw-r--r--src/tests/umalloc_test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tests/umalloc_test.c b/src/tests/umalloc_test.c
index 53810833c..1a32a0531 100644
--- a/src/tests/umalloc_test.c
+++ b/src/tests/umalloc_test.c
@@ -1,12 +1,11 @@
#include <stdio.h>
-#include <ipxe/uaccess.h>
#include <ipxe/umalloc.h>
#include <ipxe/io.h>
void umalloc_test ( void ) {
struct memory_map memmap;
- userptr_t bob;
- userptr_t fred;
+ void *bob;
+ void *fred;
printf ( "Before allocation:\n" );
get_memmap ( &memmap );