Clarify "list" output when specified lines are ambiguous
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / shr1.c
index 0efaff5ec14186fffbae6f67cd89dcbbce3b37e5..da7bffa2efd421f272e62280d6dafa2c76d3750f 100644 (file)
@@ -7,8 +7,7 @@ float sg = 5.5;
 int sgi = 2;
 static int sgs = 7;
 
-int shr1(x)
-int x;
+int shr1(int x)
 {
   f mumble;
   int l;
@@ -21,24 +20,21 @@ int x;
   sg = 6.6;
   sgi++;
   sgs = 8;
-  printf("address of sgs is 0x%x\n", &sgs);
+  printf("address of sgs is %p\n", &sgs);
   return 2*x;
 }
 
-static int shr1_local(x)
-int x;
+static int shr1_local(int x)
 {
   return 2*x;
 }
 
-int structarg(x)
-struct s x;
+int structarg(struct s x)
 {
   return x.a;
 }
 
-int pstructarg(x)
-struct s *x;
+int pstructarg(struct s *x)
 {
   return x->a;
 }
This page took 0.025722 seconds and 4 git commands to generate.