Index: uspace/srv/fs/cdfs/cdfs_ops.c
===================================================================
--- uspace/srv/fs/cdfs/cdfs_ops.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/cdfs/cdfs_ops.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -42,5 +42,4 @@
 #include <adt/hash_table.h>
 #include <adt/hash.h>
-#include <malloc.h>
 #include <mem.h>
 #include <loc.h>
@@ -49,4 +48,5 @@
 #include <block.h>
 #include <scsi/mmc.h>
+#include <stdlib.h>
 #include <str.h>
 #include <byteorder.h>
Index: uspace/srv/fs/exfat/exfat_directory.c
===================================================================
--- uspace/srv/fs/exfat/exfat_directory.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/exfat/exfat_directory.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -43,5 +43,5 @@
 #include <byteorder.h>
 #include <mem.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <str.h>
 #include <align.h>
Index: uspace/srv/fs/exfat/exfat_fat.c
===================================================================
--- uspace/srv/fs/exfat/exfat_fat.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/exfat/exfat_fat.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -48,6 +48,6 @@
 #include <assert.h>
 #include <fibril_synch.h>
-#include <malloc.h>
 #include <mem.h>
+#include <stdlib.h>
 #include <str.h>
 
Index: uspace/srv/fs/exfat/exfat_idx.c
===================================================================
--- uspace/srv/fs/exfat/exfat_idx.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/exfat/exfat_idx.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -45,5 +45,5 @@
 #include <assert.h>
 #include <fibril_synch.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 /** Each instance of this type describes one interval of freed VFS indices. */
Index: uspace/srv/fs/exfat/exfat_ops.c
===================================================================
--- uspace/srv/fs/exfat/exfat_ops.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/exfat/exfat_ops.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -59,6 +59,6 @@
 #include <fibril_synch.h>
 #include <align.h>
-#include <malloc.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 /** Mutex protecting the list of cached free FAT nodes. */
Index: uspace/srv/fs/fat/fat_fat.c
===================================================================
--- uspace/srv/fs/fat/fat_fat.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/fat/fat_fat.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -48,6 +48,6 @@
 #include <assert.h>
 #include <fibril_synch.h>
-#include <malloc.h>
 #include <mem.h>
+#include <stdlib.h>
 
 #define IS_ODD(number)	(number & 0x1)
Index: uspace/srv/fs/fat/fat_idx.c
===================================================================
--- uspace/srv/fs/fat/fat_idx.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/fat/fat_idx.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -45,5 +45,5 @@
 #include <assert.h>
 #include <fibril_synch.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 /** Each instance of this type describes one interval of freed VFS indices. */
Index: uspace/srv/fs/fat/fat_ops.c
===================================================================
--- uspace/srv/fs/fat/fat_ops.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/fat/fat_ops.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -56,5 +56,5 @@
 #include <fibril_synch.h>
 #include <align.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 #define FAT_NODE(node)	((node) ? (fat_node_t *) (node)->data : NULL)
Index: uspace/srv/fs/locfs/locfs_ops.c
===================================================================
--- uspace/srv/fs/locfs/locfs_ops.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/locfs/locfs_ops.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -39,5 +39,5 @@
 #include <stdbool.h>
 #include <errno.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <str.h>
 #include <libfs.h>
Index: uspace/srv/fs/mfs/mfs.h
===================================================================
--- uspace/srv/fs/mfs/mfs.h	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/mfs/mfs.h	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -39,7 +39,7 @@
 #include <libfs.h>
 #include <adt/list.h>
-#include <malloc.h>
 #include <mem.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <errno.h>
 #include <assert.h>
Index: uspace/srv/fs/udf/udf_file.c
===================================================================
--- uspace/srv/fs/udf/udf_file.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/udf/udf_file.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -38,5 +38,5 @@
 #include <libfs.h>
 #include <errno.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <inttypes.h>
 #include <io/log.h>
Index: uspace/srv/fs/udf/udf_idx.c
===================================================================
--- uspace/srv/fs/udf/udf_idx.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/udf/udf_idx.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -40,5 +40,5 @@
 #include <assert.h>
 #include <fibril_synch.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <adt/hash_table.h>
 #include <adt/hash.h>
Index: uspace/srv/fs/udf/udf_ops.c
===================================================================
--- uspace/srv/fs/udf/udf_ops.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/udf/udf_ops.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -51,5 +51,5 @@
 #include <fibril_synch.h>
 #include <align.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <inttypes.h>
 #include <io/log.h>
Index: uspace/srv/fs/udf/udf_osta.c
===================================================================
--- uspace/srv/fs/udf/udf_osta.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/udf/udf_osta.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -45,5 +45,5 @@
  */
 
-#include <malloc.h>
+#include <stdlib.h>
 #include <str.h>
 #include <macros.h>
Index: uspace/srv/fs/udf/udf_volume.c
===================================================================
--- uspace/srv/fs/udf/udf_volume.c	(revision cecba66ea48d60cfa59865e98aeda663808e42c7)
+++ uspace/srv/fs/udf/udf_volume.c	(revision 38d150e6238ab44c861f6486e46454e07caeb0f0)
@@ -39,6 +39,6 @@
 #include <libfs.h>
 #include <errno.h>
+#include <stdlib.h>
 #include <str.h>
-#include <malloc.h>
 #include <mem.h>
 #include <inttypes.h>
