diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-05-28 15:50:03 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-05-28 15:50:03 -0400 |
| commit | c9ec058657f9f8b3fd39a16f1a9e993b4a1e982e (patch) | |
| tree | 6cf1abadd04a1a9049d82ffe0e78be7f8b4cece2 /src/stdlib/_jkmalloc.h | |
| parent | b4cd7036bea6c6440fbbcdaebe53c864c87a5646 (diff) | |
abstract out "forced" implementations of functions from future specifications
Diffstat (limited to 'src/stdlib/_jkmalloc.h')
| -rw-r--r-- | src/stdlib/_jkmalloc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdlib/_jkmalloc.h b/src/stdlib/_jkmalloc.h index 8786acea..c6088024 100644 --- a/src/stdlib/_jkmalloc.h +++ b/src/stdlib/_jkmalloc.h @@ -1,6 +1,8 @@ #ifndef ___JKMALLOC_H__ #define ___JKMALLOC_H__ -void* __jkmalloc(const char *file, const char *func, uintmax_t line, void *ptr, size_t alignment, size_t size1 , size_t size2); +#include <inttypes.h> + +void* __jkmalloc(const char *file, const char *func, uintmax_t line, void *ptr, size_t alignment, size_t size1 , size_t size2, const char *user); #endif |
