summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libc/ieeefp/except/except.c1
-rw-r--r--src/regress/lib/libc/regex/debug.c2
-rw-r--r--src/regress/lib/libc/regex/main.c9
-rw-r--r--src/regress/lib/libc/setjmp/jmptest.c1
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;
12static volatile const double huge = DBL_MAX; 12static volatile const double huge = DBL_MAX;
13static volatile const double tiny = DBL_MIN; 13static volatile const double tiny = DBL_MIN;
14 14
15int
15main() 16main()
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 */
31int
28main(argc, argv) 32main(argc, argv)
29int argc; 33int argc;
30char *argv[]; 34char *argv[];
@@ -102,10 +106,10 @@ char *argv[];
102 exit(status); 106 exit(status);
103 } 107 }
104 if (!(copts&REG_NOSUB)) { 108 if (!(copts&REG_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)
501char *name; 505char *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>