Index: uspace/app/bdsh/cmds/builtins/builtins.h
===================================================================
--- uspace/app/bdsh/cmds/builtins/builtins.h	(revision 69145dae045b049d3f508dcd8da43aafe18f8710)
+++ uspace/app/bdsh/cmds/builtins/builtins.h	(revision a56f4b291fe3ec936421cc5ce9dceedba5d796a7)
@@ -7,5 +7,5 @@
 
 builtin_t builtins[] = {
-#include "cd/cd.def"
+#include "cd/cd_def.h"
 	{NULL, NULL, NULL, NULL}
 };
Index: uspace/app/bdsh/cmds/builtins/cd/cd.def
===================================================================
--- uspace/app/bdsh/cmds/builtins/cd/cd.def	(revision 69145dae045b049d3f508dcd8da43aafe18f8710)
+++ 	(revision )
@@ -1,14 +1,0 @@
-{
-	"cd",
-	"Change the current working directory",
-	&cmd_cd,
-	&help_cmd_cd,
-	-1
-},
-{
-	"chdir",
-	NULL,
-	&cmd_cd,
-	&help_cmd_cd,
-	-1
-},
Index: uspace/app/bdsh/cmds/builtins/cd/cd_def.h
===================================================================
--- uspace/app/bdsh/cmds/builtins/cd/cd_def.h	(revision a56f4b291fe3ec936421cc5ce9dceedba5d796a7)
+++ uspace/app/bdsh/cmds/builtins/cd/cd_def.h	(revision a56f4b291fe3ec936421cc5ce9dceedba5d796a7)
@@ -0,0 +1,14 @@
+{
+	"cd",
+	"Change the current working directory",
+	&cmd_cd,
+	&help_cmd_cd,
+	-1
+},
+{
+	"chdir",
+	NULL,
+	&cmd_cd,
+	&help_cmd_cd,
+	-1
+},
