X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=reset.c;h=bf8c3ed45e71ac490582e0c4f8fe0b02e8ed4eb0;hb=95fa0ea3d421772f29f78e3484ad824ffd5e8b6f;hp=6c4ae35ae1f997fa4574ff348e0f686201b3fbdd;hpb=dc746169cfd07a67cf99d1767743bfe0f94fdcb5;p=oweals%2Fbusybox.git diff --git a/reset.c b/reset.c index 6c4ae35ae..bf8c3ed45 100644 --- a/reset.c +++ b/reset.c @@ -23,12 +23,12 @@ * */ -#include "internal.h" +#include "busybox.h" #include extern int reset_main(int argc, char **argv) { printf("\033c"); - return(TRUE); + return EXIT_SUCCESS; }