Changes by: uvman
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357:/tmp/cvs-serv5422/include/ntfs
Modified Files:
support.h
Log Message:
Change callers of malloc() to ntfs_malloc() (Szaka). Fix compilition (Yuval).
Index: support.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/support.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- support.h 1 Nov 2006 12:31:11 -0000 1.13
+++ support.h 1 Nov 2006 13:30:40 -0000 1.14
@@ -96,4 +96,8 @@
old_state; \
})
+/* Memory allocation with logging. */
+extern void *ntfs_calloc(size_t size);
+extern void *ntfs_malloc(size_t size);
+
#endif /* defined _NTFS_SUPPORT_H */
|