diff options
Diffstat (limited to 'vm/vm_object.h')
-rw-r--r-- | vm/vm_object.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/vm_object.h b/vm/vm_object.h index 2f0e8e1a..f3583138 100644 --- a/vm/vm_object.h +++ b/vm/vm_object.h @@ -21,8 +21,8 @@ * physical memory. They collectively form the page cache. */ -#ifndef _VM_OBJECT_H -#define _VM_OBJECT_H +#ifndef VM_OBJECT_H +#define VM_OBJECT_H #include <stdint.h> @@ -85,4 +85,4 @@ struct vm_page * vm_object_lookup(struct vm_object *object, uint64_t offset); */ INIT_OP_DECLARE(vm_object_setup); -#endif /* _VM_OBJECT_H */ +#endif /* VM_OBJECT_H */ |