svn commit: trunk/uClibc/test/misc

vapier at uclibc.org vapier at uclibc.org
Sat Jan 14 06:50:34 UTC 2006


Author: vapier
Date: 2006-01-13 22:50:34 -0800 (Fri, 13 Jan 2006)
New Revision: 13306

Log:
use regular fseeko()

Modified:
   trunk/uClibc/test/misc/seek.c


Changeset:
Modified: trunk/uClibc/test/misc/seek.c
===================================================================
--- trunk/uClibc/test/misc/seek.c	2006-01-14 06:42:52 UTC (rev 13305)
+++ trunk/uClibc/test/misc/seek.c	2006-01-14 06:50:34 UTC (rev 13306)
@@ -43,8 +43,8 @@
 		return 1;
 	}
 
-	assert(fseeko64(fp, 1024, SEEK_SET) == 0);
-	assert(fseeko64(fp, (off_t)-16, SEEK_CUR) == 0);
+	assert(fseeko(fp, 1024, SEEK_SET) == 0);
+	assert(fseeko(fp, (off_t)-16, SEEK_CUR) == 0);
 	ret = ftell(fp);
 	if (ret != (1024-16)) {
 		fprintf(stderr, "ftell() failed, we wanted pos %i but got %i: ", (1024-16), ret);




More information about the uClibc-cvs mailing list