about summary refs log tree commit diff
path: root/stdio-common/scanf9.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-15 16:03:57 +0000
committerAndreas Jaeger <aj@suse.de>2000-12-15 16:03:57 +0000
commit1a511d31055bb3fe7638b043d5c5c57d929c51cd (patch)
treecb2307942b7ef0ca15763b48ef40911198903523 /stdio-common/scanf9.c
parent8ab5926a261825b43c8ce82b4c64541448b73869 (diff)
downloadglibc-1a511d31055bb3fe7638b043d5c5c57d929c51cd.tar.gz
glibc-1a511d31055bb3fe7638b043d5c5c57d929c51cd.tar.xz
glibc-1a511d31055bb3fe7638b043d5c5c57d929c51cd.zip
Update.
2000-12-15  Andreas Jaeger  <aj@suse.de>

	* stdio-common/scanf9.c (main): Reformat and change to avoid
	warnings.

	* stdio-common/tstdiomisc.c: Make local functions static.
	* stdio-common/tst-printf.c: Likewise.

	* elf/constload2.c: Add prototype declarations to shut up gcc.
	* elf/dep1.c: Likewise.
	* elf/dep2.c: Likewise.
	* elf/dep3.c: Likewise.
	* elf/dep4.c: Likewise.
	* elf/ltglobmod2.c: Likewise.

	* libio/fmemopen.c: Make local functions static.

	* elf/Makefile (distribute): Added testobj.h.

	* elf/testobj.h: New file.

	* elf/testobj1.c: Include testobj.h and move prototype
	declarations to testobj.h.
	* elf/testobj2.c: Likewise.
	* elf/testobj3.c: Likewise.
	* elf/testobj4.c: Likewise.
	* elf/testobj5.c: Likewise.
	* elf/testobj6.c: Likewise.
	* elf/testobj1_1.c: Likewise.
	* elf/preloadtest.c: Likewise.
Diffstat (limited to 'stdio-common/scanf9.c')
-rw-r--r--stdio-common/scanf9.c31
1 files changed, 19 insertions, 12 deletions
diff --git a/stdio-common/scanf9.c b/stdio-common/scanf9.c
index 52bff08e18..7aca354d2a 100644
--- a/stdio-common/scanf9.c
+++ b/stdio-common/scanf9.c
@@ -2,22 +2,29 @@
 #include <stdlib.h>
 #include <string.h>
 
-int  main(int argc, char *argv[])  {
-  int  matches;
-  char  str[10];
+int
+main (void)
+{
+  int matches;
+  char str[10];
 
   str[0] = '\0';
   matches = -9;
-  matches = sscanf("x ]", "%[^] ]", str);
-  printf("Matches = %d, string str = \"%s\".\n", matches, str);
-  printf("str should be \"x\".\n");
-  if (strcmp (str, "x")) abort ();
+  matches = sscanf ("x ]", "%[^] ]", str);
+  printf ("Matches = %d, string str = \"%s\".\n", matches, str);
+  printf ("str should be \"x\".\n");
+
+  if (strcmp (str, "x"))
+    abort ();
+
   str[0] = '\0';
   matches = -9;
-  matches = sscanf(" ] x", "%[] ]", str);
-  printf("Matches = %d, string str = \"%s\".\n", matches, str);
-  printf("str should be \" ] \".\n");
-  if (strcmp (str, " ] ")) abort ();
-  exit(0);
+  matches = sscanf (" ] x", "%[] ]", str);
+  printf ("Matches = %d, string str = \"%s\".\n", matches, str);
+  printf ("str should be \" ] \".\n");
+
+  if (strcmp (str, " ] "))
+    abort ();
+
   return 0;
 }