X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_open.c;h=d7237a89cbaec6e8732c4c1a4f2bc76dcc567b07;hp=068ceea09cb48befa02cd0bbdb68353a920f8455;hb=e0b53924703fe414a99dbf49682cf8459540a3e5;hpb=fa6335ddf55329c1ba1c50c68080a559461151cc diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open.c b/direct/timothy_tests/quick_tests/test_yaffs_open.c index 068ceea..d7237a8 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_open.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_open.c @@ -1,10 +1,23 @@ +/* + * YAFFS: Yet another FFS. A NAND-flash specific file system. + * + * Copyright (C) 2002-2010 Aleph One Ltd. + * for Toby Churchill Ltd and Brightstar Engineering + * + * Created by Timothy Manning + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + #include "test_yaffs_open.h" static int handle=0; int test_yaffs_open(void){ - handle=yaffs_open(FILE_PATH,O_CREAT | O_TRUNC| O_RDWR, FILE_MODE); + handle=yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE); return handle; }