diff options
author | Stefan Farfeleder <stefanf@FreeBSD.org> | 2004-07-04 16:11:03 +0000 |
---|---|---|
committer | Stefan Farfeleder <stefanf@FreeBSD.org> | 2004-07-04 16:11:03 +0000 |
commit | 5908d366fb365362004d549066a6225f0c46d3e6 (patch) | |
tree | 0e3fe3a61275cb24fb693e8710ebc6420adf5306 /lib/libc/stdlib/malloc.c | |
parent | 1877e5a42f58324dc404b071a6e1b456a8fc9f53 (diff) |
Notes
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 153c517df405e..7b69863bbe6a1 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -596,7 +596,7 @@ malloc_pages(size_t size) * Allocate a page of fragments */ -static __inline__ int +static __inline int malloc_make_chunks(int bits) { struct pginfo *bp; @@ -845,7 +845,7 @@ irealloc(void *ptr, size_t size) * Free a sequence of pages */ -static __inline__ void +static __inline void free_pages(void *ptr, u_long index, struct pginfo const *info) { u_long i; @@ -979,7 +979,7 @@ free_pages(void *ptr, u_long index, struct pginfo const *info) * Free a chunk, and possibly the page it's on, if the page becomes empty. */ -static __inline__ void +static __inline void free_bytes(void *ptr, u_long index, struct pginfo *info) { int i; |