X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=builtins%2Fbuiltin.def;h=75d25a094ae9161c7acb4b4b9f5e4bba6778003e;hb=ccc6cda312fea9f0468ee65b8f368e9653e1380b;hp=824b30d4efe0c8dee1a8e93317bb14934304063f;hpb=726f63884db0132f01745f1fb4465e6621088ccf;p=platform%2Fupstream%2Fbash.git diff --git a/builtins/builtin.def b/builtins/builtin.def index 824b30d..75d25a0 100644 --- a/builtins/builtin.def +++ b/builtins/builtin.def @@ -28,15 +28,20 @@ Run a shell builtin. This is useful when you wish to rename a shell builtin to be a function, but need the functionality of the builtin within the function itself. $END +#include -#include "../shell.h" +#if defined (HAVE_UNISTD_H) +# include +#endif +#include "../shell.h" #include "common.h" extern char *this_command_name; /* Run the command mentioned in list directly, without going through the normal alias/function/builtin/filename lookup process. */ +int builtin_builtin (list) WORD_LIST *list; {