]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdio-common/bug4.c
Prepare vfscanf to use __strtof128_internal
[thirdparty/glibc.git] / stdio-common / bug4.c
index acf5b5433b51cd733815259a9df60a987e6e10b4..cf7fe116ebc29fcfcf3cf4b9089e762f58e8a7a0 100644 (file)
@@ -1,6 +1,3 @@
-#ifdef _LIBC
-#include <ansidecl.h>
-#endif
 #include <stdio.h>
 #include <unistd.h>
 #include <string.h>
@@ -8,15 +5,14 @@
 int stdio_block_read = 1, stdio_block_write = 1;
 
 int
-DEFUN(main, (argc, argv),
-      int argc AND char **argv)
+main (int argc, char *argv[])
 {
   FILE *f;
   int i;
   char buffer[31];
-  const char filename[] = "/tmp/bugtest";
+  const char filename[] = OBJPFX "bug4.test";
 
-  while ((i = getopt (argc, argv, "rw")) != EOF)
+  while ((i = getopt (argc, argv, "rw")) != -1)
     switch (i)
       {
       case 'r':
@@ -27,17 +23,17 @@ DEFUN(main, (argc, argv),
        break;
       }
 
-  f = fopen(filename, "w+");
-  for (i=0; i<9000; i++) {
+  f = fopen (filename, "w+");
+  for (i = 0; i < 9000; ++i)
     putc('x', f);
-  }
-  fseek(f, 8180L, 0);
-  fwrite("Where does this text come from?", 1, 31, f);
-  fseek(f, 8180L, 0);
-  fread(buffer, 1, 31, f);
-  fwrite(buffer, 1, 31, stdout);
-  fclose(f);
-  remove(filename);
+
+  fseek (f, 8180L, 0);
+  fwrite ("Where does this text come from?", 1, 31, f);
+  fseek (f, 8180L, 0);
+  fread (buffer, 1, 31, f);
+  fwrite (buffer, 1, 31, stdout);
+  fclose (f);
+  remove (filename);
 
   if (!memcmp (buffer, "Where does this text come from?", 31))
     {