diff options
author | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-06 17:27:19 +0000 |
commit | 9e9bcaf143bf8507e947f9934371744c3d50a8ea (patch) | |
tree | b63a03929569f34ade9a940ef1416586346b8d30 /defs.h | |
parent | 03b6376f56074cd1dcbb1b35639e303c3a8a0181 (diff) | |
download | xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.tar.gz xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.tar.bz2 xv6-labs-9e9bcaf143bf8507e947f9934371744c3d50a8ea.zip |
standardize various * conventions
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ // kalloc.c -char *kalloc(int); +char* kalloc(int); void kfree(char*, int); void kinit(void); @@ -18,7 +18,7 @@ struct proc* copyproc(struct proc*); struct spinlock; uint growproc(int); void sleep(void*, struct spinlock*); -void wakeup(void *); +void wakeup(void*); void scheduler(void); void proc_exit(void); int proc_kill(int); @@ -35,9 +35,9 @@ void tvinit(void); void idtinit(void); // string.c -void * memset(void*, int, uint); +void* memset(void*, int, uint); int memcmp(const void*, const void*, uint); -void *memmove(void*, const void*, uint); +void* memmove(void*, const void*, uint); int strncmp(const char*, const char*, uint); // syscall.c |