diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-05 00:55:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-05 00:55:18 +0000 |
commit | c159de629ee1c310dba739a7efe86cd8369db2c0 (patch) | |
tree | 2bb761e7baad694fa8bcc2cd088868c984c30fe4 /stdio-common | |
parent | 1e9f6e9846167aeefea8781f097cd47d75d70a1b (diff) |
Update.
1999-10-04 Andreas Jaeger <aj@suse.de>
* configure.in: Allow makeinfo 4.*.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/bug13.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/stdio-common/bug13.c b/stdio-common/bug13.c new file mode 100644 index 0000000000..17b7ff9825 --- /dev/null +++ b/stdio-common/bug13.c @@ -0,0 +1,30 @@ +#include <stdio.h> + + + +int +main (void) +{ + int res = 0; + char buf[100]; + +#define TEST(nr, result, format, args...) \ + if (sprintf (buf, format, ## args) != result) \ + { \ + printf ("test %d failed\n", nr); \ + res = 1; \ + } + + TEST (1, 2, "%d", -1); + TEST (2, 2, "% 2d", 1); + TEST (3, 3, "%#x", 1); + TEST (4, 2, "%+d", 1); + TEST (5, 2, "% d", 1); + TEST (6, 2, "%-d", -1); + TEST (7, 2, "%- 2d", 1); + TEST (8, 3, "%-#x", 1); + TEST (9, 2, "%-+d", 1); + TEST (10, 2, "%- d", 1); + + return res; +} |