diff options
Diffstat (limited to 'string/test-ffs.c')
-rw-r--r-- | string/test-ffs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/string/test-ffs.c b/string/test-ffs.c index 9618408ae2..8d46d4e076 100644 --- a/string/test-ffs.c +++ b/string/test-ffs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joel Sherrill (jsherril@redstone-emh2.army.mil), On-Line Applications Research Corporation. @@ -27,6 +27,9 @@ main (void) { int failures = 0; int i; + + auto void try (int value, int expected); + void try (int value, int expected) { if (ffs (value) != expected) |