Changeset dc5c303 in mainline for uspace/lib/c/include/malloc.h
- Timestamp:
 - 2023-12-28T13:59:23Z (23 months ago)
 - Children:
 - 6b66de6b
 - Parents:
 - 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
 - boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
 - git-committer:
 - GitHub <noreply@…> (2023-12-28 13:59:23)
 - File:
 - 
      
- 1 edited
 
- 
          
  uspace/lib/c/include/malloc.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/c/include/malloc.h
r42c2e65 rdc5c303 39 39 #include <_bits/decls.h> 40 40 41 __C_DECLS_BEGIN;42 43 extern void *malloc(size_t size)44 __attribute__((malloc));45 extern void *calloc(size_t nmemb, size_t size)46 __attribute__((malloc));47 extern void *realloc(void *addr, size_t size)48 __attribute__((warn_unused_result));49 extern void free(void *addr);50 51 __C_DECLS_END;52 53 41 #ifdef _HELENOS_SOURCE 54 42 __HELENOS_DECLS_BEGIN; 55 43 56 extern void *memalign(size_t align, size_t size)57 __attribute__((malloc));58 44 extern void *heap_check(void); 59 45  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  