X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Flinux_tests%2Frename.c;fp=direct%2Ftimothy_tests%2Flinux_tests%2Frename.c;h=0000000000000000000000000000000000000000;hp=9c40c2faada25fac2a15793b628c2606463efcde;hb=9c35dd427cec7ce855ed5816f12b241d2d5f8ba2;hpb=6820610d6b3ea887af57fbd9706fff78923a2115 diff --git a/direct/timothy_tests/linux_tests/rename.c b/direct/timothy_tests/linux_tests/rename.c deleted file mode 100644 index 9c40c2f..0000000 --- a/direct/timothy_tests/linux_tests/rename.c +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include - - -int main() -{ - int output=0; - int error_code =0 ; - output=rename( "/home/timothy/test/cat/","/home/timothy/test/dog/"); - printf("output %d\n",output); - if (output <0 ) { - error_code = errno; - printf("error code %d\n",error_code); - printf("Error description is : %s\n",strerror(errno)); - } - return 0; -}