1
0
mirror of https://github.com/jrcutler/threadless.io.git synced 2024-07-07 10:35:49 +00:00

Make allocator get function names more consistent

This commit is contained in:
2016-04-04 11:09:27 -04:00
parent cc12de9414
commit 0ee13cea80
5 changed files with 10 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ extern "C" {
/** Get default allocator instance
* @returns default allocator
*/
allocator_t *allocator_get_default(void);
allocator_t *default_allocator_get(void);
#ifdef __cplusplus
}

View File

@@ -20,7 +20,7 @@ extern "C" {
/** Get @c mmap(3) allocator instance
* @returns default allocator
*/
allocator_t *allocator_get_mmap(void);
allocator_t *mmap_allocator_get(void);
#ifdef __cplusplus
}