Changeset 33b8d024 in mainline for uspace/lib/c/generic/malloc.c
- Timestamp:
- 2018-01-16T20:38:46Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2467b41
- Parents:
- d39c46e0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/malloc.c
rd39c46e0 r33b8d024 874 874 * 875 875 */ 876 void *realloc( const void *addr, const size_t size)876 void *realloc(void * const addr, const size_t size) 877 877 { 878 878 if (size == 0) { … … 988 988 * 989 989 */ 990 void free( const void *addr)990 void free(void * const addr) 991 991 { 992 992 if (addr == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.