Changeset 11b285d in mainline for kernel/generic/include/mm/slab.h
- Timestamp:
- 2018-05-13T15:19:32Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ad896eb
- Parents:
- 13db2044
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 14:59:01)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 15:19:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/slab.h
r13db2044 r11b285d 140 140 141 141 /* malloc support */ 142 extern void *malloc(size_t , unsigned int)142 extern void *malloc(size_t) 143 143 __attribute__((malloc)); 144 extern void *realloc(void *, size_t , unsigned int)144 extern void *realloc(void *, size_t) 145 145 __attribute__((warn_unused_result)); 146 146 extern void free(void *); 147 148 extern void *nfmalloc(size_t) 149 __attribute__((malloc, returns_nonnull)); 147 150 148 151 #endif
Note:
See TracChangeset
for help on using the changeset viewer.