Changeset 1196 in MondoRescue for branches/stable/mondo/src/include
- Timestamp:
- Feb 21, 2007, 2:40:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/include/mr_mem.h
r1178 r1196 23 23 #define mr_malloc(x) mr_malloc_int((size_t)x,__LINE__,__FILE__) 24 24 #define mr_setenv(x,y) mr_setenv_int(x,y,__LINE__,__FILE__) 25 #define mr_strcat(x,y ) mr_strcat_int((char **)&x,y, __LINE__,__FILE__);25 #define mr_strcat(x,y,args...) mr_strcat_int((char **)&x, __LINE__,__FILE__, y,## args); 26 26 27 27 /* Internal function bringing debuging info … … 33 33 extern inline void *mr_malloc_int(size_t size, int line, char *file); 34 34 extern inline void mr_setenv_int(const char *name, const char *value, int line, char *file); 35 extern void mr_strcat_int(char **in, const char *add, int line, char *file);35 extern void mr_strcat_int(char **in, int line, char *file, const char *fmt, ...); 36 36 37 37 #endif /* MR_MEM_H */
Note:
See TracChangeset
for help on using the changeset viewer.