diff options
| author | millert <> | 1996-12-21 22:23:43 +0000 |
|---|---|---|
| committer | millert <> | 1996-12-21 22:23:43 +0000 |
| commit | 03d7d5f0c4f026dfd9de6d005038c306183effbe (patch) | |
| tree | 543d36ab2fffd4e2f8781fb534da4036513805b6 | |
| parent | acafe265c0ab29fe27cd3f97d076bb175724009a (diff) | |
| download | openbsd-03d7d5f0c4f026dfd9de6d005038c306183effbe.tar.gz openbsd-03d7d5f0c4f026dfd9de6d005038c306183effbe.tar.bz2 openbsd-03d7d5f0c4f026dfd9de6d005038c306183effbe.zip | |
-Wall madness.
| -rw-r--r-- | src/regress/lib/libc/ieeefp/except/except.c | 1 | ||||
| -rw-r--r-- | src/regress/lib/libc/regex/debug.c | 2 | ||||
| -rw-r--r-- | src/regress/lib/libc/regex/main.c | 9 | ||||
| -rw-r--r-- | src/regress/lib/libc/setjmp/jmptest.c | 1 |
4 files changed, 9 insertions, 4 deletions
diff --git a/src/regress/lib/libc/ieeefp/except/except.c b/src/regress/lib/libc/ieeefp/except/except.c index 0ffdcdd468..a2a107a788 100644 --- a/src/regress/lib/libc/ieeefp/except/except.c +++ b/src/regress/lib/libc/ieeefp/except/except.c | |||
| @@ -12,6 +12,7 @@ static volatile const double zero = 0.0; | |||
| 12 | static volatile const double huge = DBL_MAX; | 12 | static volatile const double huge = DBL_MAX; |
| 13 | static volatile const double tiny = DBL_MIN; | 13 | static volatile const double tiny = DBL_MIN; |
| 14 | 14 | ||
| 15 | int | ||
| 15 | main() | 16 | main() |
| 16 | { | 17 | { |
| 17 | volatile double x; | 18 | volatile double x; |
diff --git a/src/regress/lib/libc/regex/debug.c b/src/regress/lib/libc/regex/debug.c index 861f550611..41cd4a557d 100644 --- a/src/regress/lib/libc/regex/debug.c +++ b/src/regress/lib/libc/regex/debug.c | |||
| @@ -218,7 +218,7 @@ FILE *d; | |||
| 218 | fprintf(d, ">"); | 218 | fprintf(d, ">"); |
| 219 | break; | 219 | break; |
| 220 | default: | 220 | default: |
| 221 | fprintf(d, "!%d(%d)!", OP(*s), opnd); | 221 | fprintf(d, "!%ld(%ld)!", (long)OP(*s), (long)opnd); |
| 222 | break; | 222 | break; |
| 223 | } | 223 | } |
| 224 | if (!done) | 224 | if (!done) |
diff --git a/src/regress/lib/libc/regex/main.c b/src/regress/lib/libc/regex/main.c index 8d88a8b9b8..add5e8be10 100644 --- a/src/regress/lib/libc/regex/main.c +++ b/src/regress/lib/libc/regex/main.c | |||
| @@ -1,10 +1,13 @@ | |||
| 1 | /* $OpenBSD: main.c,v 1.2 1996/12/21 22:23:42 millert Exp $ */ | ||
| 1 | /* $NetBSD: main.c,v 1.2 1995/04/20 22:39:51 cgd Exp $ */ | 2 | /* $NetBSD: main.c,v 1.2 1995/04/20 22:39:51 cgd Exp $ */ |
| 2 | 3 | ||
| 3 | #include <stdio.h> | 4 | #include <stdio.h> |
| 5 | #include <stdlib.h> | ||
| 4 | #include <string.h> | 6 | #include <string.h> |
| 5 | #include <sys/types.h> | 7 | #include <sys/types.h> |
| 6 | #include <regex.h> | 8 | #include <regex.h> |
| 7 | #include <assert.h> | 9 | #include <assert.h> |
| 10 | #include <unistd.h> | ||
| 8 | 11 | ||
| 9 | #include "main.ih" | 12 | #include "main.ih" |
| 10 | 13 | ||
| @@ -25,6 +28,7 @@ extern void regprint(); | |||
| 25 | /* | 28 | /* |
| 26 | - main - do the simple case, hand off to regress() for regression | 29 | - main - do the simple case, hand off to regress() for regression |
| 27 | */ | 30 | */ |
| 31 | int | ||
| 28 | main(argc, argv) | 32 | main(argc, argv) |
| 29 | int argc; | 33 | int argc; |
| 30 | char *argv[]; | 34 | char *argv[]; |
| @@ -102,10 +106,10 @@ char *argv[]; | |||
| 102 | exit(status); | 106 | exit(status); |
| 103 | } | 107 | } |
| 104 | if (!(copts®_NOSUB)) { | 108 | if (!(copts®_NOSUB)) { |
| 105 | len = (int)(subs[0].rm_eo - subs[0].rm_so); | 109 | len = (size_t)(subs[0].rm_eo - subs[0].rm_so); |
| 106 | if (subs[0].rm_so != -1) { | 110 | if (subs[0].rm_so != -1) { |
| 107 | if (len != 0) | 111 | if (len != 0) |
| 108 | printf("match `%.*s'\n", len, | 112 | printf("match `%.*s'\n", (int)len, |
| 109 | argv[optind] + subs[0].rm_so); | 113 | argv[optind] + subs[0].rm_so); |
| 110 | else | 114 | else |
| 111 | printf("match `'@%.1s\n", | 115 | printf("match `'@%.1s\n", |
| @@ -501,7 +505,6 @@ efind(name) | |||
| 501 | char *name; | 505 | char *name; |
| 502 | { | 506 | { |
| 503 | static char efbuf[100]; | 507 | static char efbuf[100]; |
| 504 | size_t n; | ||
| 505 | regex_t re; | 508 | regex_t re; |
| 506 | 509 | ||
| 507 | sprintf(efbuf, "REG_%s", name); | 510 | sprintf(efbuf, "REG_%s", name); |
diff --git a/src/regress/lib/libc/setjmp/jmptest.c b/src/regress/lib/libc/setjmp/jmptest.c index f2cecc9178..c306979b3d 100644 --- a/src/regress/lib/libc/setjmp/jmptest.c +++ b/src/regress/lib/libc/setjmp/jmptest.c | |||
| @@ -32,6 +32,7 @@ | |||
| 32 | */ | 32 | */ |
| 33 | 33 | ||
| 34 | #include <sys/types.h> | 34 | #include <sys/types.h> |
| 35 | #include <err.h> | ||
| 35 | #include <setjmp.h> | 36 | #include <setjmp.h> |
| 36 | #include <signal.h> | 37 | #include <signal.h> |
| 37 | #include <stdio.h> | 38 | #include <stdio.h> |
